Merge pull request #23303 from c0bw3b/pkg/libseccomp

libseccomp: 2.3.1  -> 2.3.2 + fixed scmp_sys_resolver
This commit is contained in:
Michael Raskin 2017-03-18 18:37:21 +01:00 committed by GitHub
commit 3d43e7157d

View File

@ -1,26 +1,30 @@
{ stdenv, fetchurl, getopt }:
let version = "2.3.1"; in
{ stdenv, fetchurl, getopt, makeWrapper }:
stdenv.mkDerivation rec {
name = "libseccomp-${version}";
version = "2.3.2";
src = fetchurl {
url = "https://github.com/seccomp/libseccomp/releases/download/v${version}/libseccomp-${version}.tar.gz";
sha256 = "0asnlkzqms520r0dra08dzcz5hh6hs7lkajfw9wij3vrd0hxsnzz";
sha256 = "3ddc8c037956c0a5ac19664ece4194743f59e1ccd4adde848f4f0dae7f77bca1";
};
buildInputs = [ getopt ];
buildInputs = [ getopt makeWrapper ];
patchPhase = ''
patchShebangs .
'';
postInstall = ''
wrapProgram $out/bin/scmp_sys_resolver --prefix LD_LIBRARY_PATH ":" $out/lib
'';
meta = with stdenv.lib; {
description = "High level library for the Linux Kernel seccomp filter";
homepage = "http://sourceforge.net/projects/libseccomp";
license = licenses.lgpl2;
homepage = "https://github.com/seccomp/libseccomp";
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = with maintainers; [ thoughtpolice wkennington ];
};
}