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

31 lines
843 B
Nix
Raw Normal View History

{ stdenv, fetchurl, getopt, makeWrapper }:
stdenv.mkDerivation rec {
2015-05-22 13:49:27 +00:00
name = "libseccomp-${version}";
version = "2.3.2";
2015-05-22 13:49:27 +00:00
src = fetchurl {
url = "https://github.com/seccomp/libseccomp/releases/download/v${version}/libseccomp-${version}.tar.gz";
sha256 = "3ddc8c037956c0a5ac19664ece4194743f59e1ccd4adde848f4f0dae7f77bca1";
};
buildInputs = [ getopt makeWrapper ];
2015-03-27 00:54:08 +00:00
patchPhase = ''
2015-03-27 00:54:08 +00:00
patchShebangs .
'';
postInstall = ''
wrapProgram $out/bin/scmp_sys_resolver --prefix LD_LIBRARY_PATH ":" $out/lib
'';
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;
maintainers = with maintainers; [ thoughtpolice wkennington ];
};
}