My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libsmartcols/default.nix

32 lines
894 B

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, python3, gtk-doc}:
stdenv.mkDerivation rec {
pname = "libsmartcols";
version = "2.36.1";
nativeBuildInputs = [ autoreconfHook pkg-config python3 gtk-doc ];
src = fetchFromGitHub {
owner = "karelzak";
repo = "util-linux";
rev = "v${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 = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
maintainers = with lib.maintainers; [ rb2k ];
};
}