nixpkgs/pkgs/os-specific/linux/libcap-ng/default.nix
Sandro Jäckel 2c59b12503
libcap_ng: remove unused code for python bindings
The code was introduced way back in 2015 and is unused since then.

2dc9cb1120
2022-08-22 14:01:18 +02:00

23 lines
545 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "libcap-ng";
version = "0.8.3";
src = fetchurl {
url = "https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-${version}.tar.gz";
sha256 = "sha256-vtb2hI4iuy+Dtfdksq7w7TkwVOgDqOOocRyyo55rSS0=";
};
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;
};
}