Skip to content

Commit

Permalink
libsmartcols: init at v2.36.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rb2k committed Dec 21, 2020
1 parent 674a998 commit 95c123d
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pkgs/development/libraries/libsmartcols/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, python3 }:

stdenv.mkDerivation rec {
name = "libsmartcols";
version = "v2.36.1";

nativeBuildInputs = [ autoreconfHook pkgconfig python3 ];

src = fetchFromGitHub {
owner = "karelzak";
repo = "util-linux";
rev = version;
sha256 = "0z7nv054pqhlihqiw0vk3h40j0cxk1yxf8zzh0ddmvk6834cnyxs";
};

configureFlags = [ "--disable-all-programs" "--enable-libsmartcols" ];

buildPhase = ''
make libsmartcols.la
'';

installTargets = [ "install-am" "install-pkgconfigDATA" ];

meta = {
description = "smart column output alignment library";
homepage = https://github.com/karelzak/util-linux/tree/master/libsmartcols;
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
maintainers = with stdenv.lib.maintainers; [ rb2k ];
};
}

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5174,6 +5174,8 @@ in

libcryptui = callPackage ../development/libraries/libcryptui { };

libsmartcols = callPackage ../development/libraries/libsmartcols { };

libsmi = callPackage ../development/libraries/libsmi { };

libgen-cli = callPackage ../tools/misc/libgen-cli { };
Expand Down

0 comments on commit 95c123d

Please sign in to comment.