1{ lib, stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 pname = "libcap-ng";
5 version = "0.8.3";
6
7 src = fetchurl {
8 url = "https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-${version}.tar.gz";
9 sha256 = "sha256-vtb2hI4iuy+Dtfdksq7w7TkwVOgDqOOocRyyo55rSS0=";
10 };
11
12 configureFlags = [
13 "--without-python"
14 ];
15
16 meta = with lib; {
17 description = "Library for working with POSIX capabilities";
18 homepage = "https://people.redhat.com/sgrubb/libcap-ng/";
19 platforms = platforms.linux;
20 license = licenses.lgpl21;
21 };
22}