2020-08-24 11:55:31 +00:00
|
|
|
{ stdenv, fetchurl, getopt, makeWrapper, utillinux, gperf }:
|
2014-04-09 00:37:47 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libseccomp";
|
2020-08-24 11:55:31 +00:00
|
|
|
version = "2.5.0";
|
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";
|
2020-08-24 11:55:31 +00:00
|
|
|
sha256 = "1wql62cg8f95cwpy057cl764nni9g4sdn5lqj68x22kjs8w71yhz";
|
2014-04-09 00:37:47 +00:00
|
|
|
};
|
|
|
|
|
2018-02-22 14:15:55 +00:00
|
|
|
outputs = [ "out" "lib" "dev" "man" ];
|
|
|
|
|
2020-08-24 11:55:31 +00:00
|
|
|
buildInputs = [ getopt makeWrapper gperf ];
|
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
|
|
|
'';
|
|
|
|
|
2018-08-10 00:27:39 +00:00
|
|
|
checkInputs = [ utillinux ];
|
|
|
|
doCheck = false; # dependency cycle
|
|
|
|
|
2017-05-04 15:21:52 +00:00
|
|
|
# Hack to ensure that patchelf --shrink-rpath get rids of a $TMPDIR reference.
|
|
|
|
preFixup = "rm -rfv src";
|
2017-02-28 22:55:18 +00:00
|
|
|
|
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";
|
2020-08-24 11:55:02 +00:00
|
|
|
homepage = "https://github.com/seccomp/libseccomp";
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.linux;
|
2019-05-03 01:29:12 +00:00
|
|
|
badPlatforms = [
|
|
|
|
"alpha-linux"
|
2020-08-24 11:55:02 +00:00
|
|
|
"sparc-linux"
|
|
|
|
"sparc64-linux"
|
2019-05-03 01:29:12 +00:00
|
|
|
];
|
2019-01-26 10:01:09 +00:00
|
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
2014-04-09 00:37:47 +00:00
|
|
|
};
|
|
|
|
}
|