nixpkgs/pkgs/development/libraries/libseccomp/default.nix

39 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, getopt, makeWrapper, utillinux }:
stdenv.mkDerivation rec {
pname = "libseccomp";
2020-03-07 22:36:50 +01:00
version = "2.4.3";
2015-05-22 15:49:27 +02:00
src = fetchurl {
url = "https://github.com/seccomp/libseccomp/releases/download/v${version}/libseccomp-${version}.tar.gz";
2020-03-07 22:36:50 +01:00
sha256 = "07crwxqzvl5k2b90a47ii9wgvi09s9hsy5b5jddw9ylp351d25fg";
};
2018-02-22 15:15:55 +01:00
outputs = [ "out" "lib" "dev" "man" ];
buildInputs = [ getopt makeWrapper ];
2015-03-27 01:54:08 +01:00
patchPhase = ''
2015-03-27 01:54:08 +01:00
patchShebangs .
'';
checkInputs = [ utillinux ];
doCheck = false; # dependency cycle
# Hack to ensure that patchelf --shrink-rpath get rids of a $TMPDIR reference.
preFixup = "rm -rfv src";
2015-03-27 01:54:08 +01:00
meta = with stdenv.lib; {
description = "High level library for the Linux Kernel seccomp filter";
homepage = "https://github.com/seccomp/libseccomp";
license = licenses.lgpl21;
2015-03-27 01:54:08 +01:00
platforms = platforms.linux;
badPlatforms = [
"alpha-linux"
"riscv64-linux" "riscv32-linux"
"sparc-linux" "sparc64-linux"
];
maintainers = with maintainers; [ thoughtpolice ];
};
}