Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
24 lines
579 B
Nix
24 lines
579 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libcap-ng";
|
|
version = "0.8.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-${version}.tar.gz";
|
|
hash = "sha256-O6UpTRy9+pivqs+8ALavntK4PoohgXGF39hEzIx6xv8=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|