core/pkgs/by-name/li/libcap_ng/default.nix
2024-06-30 09:16:52 +01:00

31 lines
596 B
Nix

{
lib,
stdenv,
fetchurl,
}:
stdenv.mkDerivation rec {
pname = "libcap-ng";
version = "0.8.4";
src = fetchurl {
url = "https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-${version}.tar.gz";
sha256 = "sha256-aFgdOzjnVTy29t33gTsfyZ5ShW8hQh97R3zlq9JgWoo=";
};
outputs = [
"out"
"dev"
"man"
];
configureFlags = [ "--without-python" ];
meta = with lib; {
description = "Library for working with POSIX capabilities";
homepage = "https://people.redhat.com/sgrubb/libcap-ng/";
platforms = platforms.linux;
license = licenses.lgpl21;
};
}