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

32 lines
911 B
Nix
Raw Normal View History

{ stdenv, fetchurl, getopt, makeWrapper }:
stdenv.mkDerivation rec {
2015-05-22 13:49:27 +00:00
name = "libseccomp-${version}";
2018-01-28 15:13:48 +00:00
version = "2.3.3";
2015-05-22 13:49:27 +00:00
src = fetchurl {
url = "https://github.com/seccomp/libseccomp/releases/download/v${version}/libseccomp-${version}.tar.gz";
2018-01-28 15:13:48 +00:00
sha256 = "0mdiyfljrkfl50q1m3ws8yfcyfjwf1zgkvcva8ffcwncji18zhkz";
};
2018-02-22 14:15:55 +00:00
outputs = [ "out" "lib" "dev" "man" ];
buildInputs = [ getopt makeWrapper ];
2015-03-27 00:54:08 +00:00
patchPhase = ''
2015-03-27 00:54:08 +00:00
patchShebangs .
'';
# Hack to ensure that patchelf --shrink-rpath get rids of a $TMPDIR reference.
preFixup = "rm -rfv src";
2015-03-27 00:54:08 +00: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 00:54:08 +00:00
platforms = platforms.linux;
badPlatforms = platforms.riscv;
2015-03-27 00:54:08 +00:00
maintainers = with maintainers; [ thoughtpolice wkennington ];
};
}