mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #107207 from rb2k/add_libsmartcols
libsmartcols: init at v2.36.1
This commit is contained in:
commit
4de10624f6
3 changed files with 40 additions and 0 deletions
|
@ -7349,6 +7349,12 @@
|
|||
githubId = 1758708;
|
||||
name = "Răzvan Flavius Panda";
|
||||
};
|
||||
rb2k = {
|
||||
email = "nix@marc-seeger.com";
|
||||
github = "rb2k";
|
||||
githubId = 9519;
|
||||
name = "Marc Seeger";
|
||||
};
|
||||
rbasso = {
|
||||
email = "rbasso@sharpgeeks.net";
|
||||
github = "rbasso";
|
||||
|
|
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 ];
|
||||
};
|
||||
}
|
||||
|
|
@ -5178,6 +5178,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 a new issue