2022-08-22 09:18:18 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2013-02-24 10:19:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libcap-ng";
|
2022-04-02 02:25:23 +00:00
|
|
|
version = "0.8.3";
|
2013-02-24 10:19:35 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-08-22 09:18:18 +00:00
|
|
|
url = "https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-${version}.tar.gz";
|
2022-04-02 02:25:23 +00:00
|
|
|
sha256 = "sha256-vtb2hI4iuy+Dtfdksq7w7TkwVOgDqOOocRyyo55rSS0=";
|
2013-02-24 10:19:35 +00:00
|
|
|
};
|
|
|
|
|
2023-05-17 21:00:44 +00:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
|
|
|
2015-09-24 03:49:17 +00:00
|
|
|
configureFlags = [
|
2022-08-22 09:18:18 +00:00
|
|
|
"--without-python"
|
2015-09-24 03:49:17 +00:00
|
|
|
];
|
|
|
|
|
2022-08-22 09:18:18 +00:00
|
|
|
meta = with lib; {
|
2013-02-24 10:19:35 +00:00
|
|
|
description = "Library for working with POSIX capabilities";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://people.redhat.com/sgrubb/libcap-ng/";
|
2015-09-24 03:49:17 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.lgpl21;
|
2013-02-24 10:19:35 +00:00
|
|
|
};
|
|
|
|
}
|