2017-02-28 22:55:18 +00:00
|
|
|
{ stdenv, fetchurl, getopt, makeWrapper }:
|
2014-04-09 00:37:47 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-05-22 13:49:27 +00:00
|
|
|
name = "libseccomp-${version}";
|
2017-02-28 22:55:18 +00:00
|
|
|
version = "2.3.2";
|
2014-04-09 00:37:47 +00:00
|
|
|
|
2015-05-22 13:49:27 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/seccomp/libseccomp/releases/download/v${version}/libseccomp-${version}.tar.gz";
|
2017-02-28 22:55:18 +00:00
|
|
|
sha256 = "3ddc8c037956c0a5ac19664ece4194743f59e1ccd4adde848f4f0dae7f77bca1";
|
2014-04-09 00:37:47 +00:00
|
|
|
};
|
|
|
|
|
2017-02-28 22:55:18 +00:00
|
|
|
buildInputs = [ getopt makeWrapper ];
|
2015-03-27 00:54:08 +00:00
|
|
|
|
2014-04-09 00:37:47 +00:00
|
|
|
patchPhase = ''
|
2015-03-27 00:54:08 +00:00
|
|
|
patchShebangs .
|
2014-04-09 00:37:47 +00:00
|
|
|
'';
|
|
|
|
|
2017-02-28 22:55:18 +00:00
|
|
|
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; {
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "High level library for the Linux Kernel seccomp filter";
|
2017-02-28 22:55:18 +00:00
|
|
|
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 ];
|
2014-04-09 00:37:47 +00:00
|
|
|
};
|
|
|
|
}
|
2017-02-28 22:55:18 +00:00
|
|
|
|