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

28 lines
713 B
Nix
Raw Normal View History

2015-03-27 00:54:08 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, getopt }:
stdenv.mkDerivation rec {
name = "libseccomp-${version}";
2015-03-27 00:54:08 +00:00
version = "2.2.0";
2015-03-27 00:54:08 +00:00
src = fetchFromGitHub {
owner = "seccomp";
repo = "libseccomp";
rev = "v${version}";
sha256 = "0vfd6hx92cp1jaqxxaj30r92bfm6fmamxi2yqxrl82mqism1lk84";
};
2015-03-27 00:54:08 +00:00
buildInputs = [ autoreconfHook getopt ];
patchPhase = ''
2015-03-27 00:54:08 +00:00
patchShebangs .
'';
2015-03-27 00:54:08 +00:00
meta = with stdenv.lib; {
description = "high level library for the Linux Kernel seccomp filter";
homepage = "http://sourceforge.net/projects/libseccomp";
2015-03-27 00:54:08 +00:00
license = licenses.lgpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ thoughtpolice wkennington ];
};
}