mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
7b2eab31d5
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - ran `/nix/store/s6hxbgihfzp3phh3904idpw3jpn1k371-libcap-ng-0.7.9/bin/captest -h` got 0 exit code - ran `/nix/store/s6hxbgihfzp3phh3904idpw3jpn1k371-libcap-ng-0.7.9/bin/captest --help` got 0 exit code - ran `/nix/store/s6hxbgihfzp3phh3904idpw3jpn1k371-libcap-ng-0.7.9/bin/captest help` got 0 exit code - found 0.7.9 with grep in /nix/store/s6hxbgihfzp3phh3904idpw3jpn1k371-libcap-ng-0.7.9 - directory tree listing: https://gist.github.com/eec1818588ca8e5fe720bfe3febec73b
41 lines
1.3 KiB
Nix
41 lines
1.3 KiB
Nix
{ stdenv, fetchurl, swig ? null, python2 ? null, python3 ? null }:
|
|
|
|
assert python2 != null || python3 != null -> swig != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libcap-ng-${version}";
|
|
# When updating make sure to test that the version with
|
|
# all of the python bindings still works
|
|
version = "0.7.9";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/${name}.tar.gz";
|
|
sha256 = "0a0k484kwv0zilry2mbl9k56cnpdhsjxdxin17jas6kkyfy345aa";
|
|
};
|
|
|
|
nativeBuildInputs = [ swig ];
|
|
buildInputs = [ python2 python3 ];
|
|
|
|
postPatch = ''
|
|
function get_header() {
|
|
echo -e "#include <$1>" | gcc -M -xc - | tr ' ' '\n' | grep "$1" | head -n 1
|
|
}
|
|
|
|
# Fix some hardcoding of header paths
|
|
sed -i "s,/usr/include/linux/capability.h,$(get_header linux/capability.h),g" bindings/python{,3}/Makefile.in
|
|
'';
|
|
|
|
configureFlags = [
|
|
(if python2 != null then "--with-python" else "--without-python")
|
|
(if python3 != null then "--with-python3" else "--without-python3")
|
|
];
|
|
|
|
meta = let inherit (stdenv.lib) platforms licenses maintainers; in {
|
|
description = "Library for working with POSIX capabilities";
|
|
homepage = http://people.redhat.com/sgrubb/libcap-ng/;
|
|
platforms = platforms.linux;
|
|
license = licenses.lgpl21;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|