nixpkgs/pkgs/development/libraries/libseccomp/default.nix
William A. Kennington III d6c6253be0 libseccomp: 2.2.0 -> 2.2.1
2015-05-20 18:30:22 -07:00

28 lines
713 B
Nix

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