libsmartcols: init at v2.36.1
This commit is contained in:
parent
674a99882c
commit
95c123d183
32
pkgs/development/libraries/libsmartcols/default.nix
Normal file
32
pkgs/development/libraries/libsmartcols/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user