core/pkgs/by-name/li/libcap_ng/default.nix

31 lines
596 B
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
lib,
stdenv,
fetchurl,
}:
2024-05-02 00:46:19 +00:00
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=";
};
2024-06-30 08:16:52 +00:00
outputs = [
"out"
"dev"
"man"
2024-05-02 00:46:19 +00:00
];
2024-06-30 08:16:52 +00:00
configureFlags = [ "--without-python" ];
2024-05-02 00:46:19 +00:00
meta = with lib; {
description = "Library for working with POSIX capabilities";
homepage = "https://people.redhat.com/sgrubb/libcap-ng/";
platforms = platforms.linux;
license = licenses.lgpl21;
};
}