2018-08-10 01:27:39 +01:00
|
|
|
{ stdenv, fetchurl, getopt, makeWrapper, utillinux }:
|
2014-04-09 01:37:47 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-05-22 14:49:27 +01:00
|
|
|
name = "libseccomp-${version}";
|
2019-04-18 03:16:00 +01:00
|
|
|
version = "2.4.1";
|
2014-04-09 01:37:47 +01:00
|
|
|
|
2015-05-22 14:49:27 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/seccomp/libseccomp/releases/download/v${version}/libseccomp-${version}.tar.gz";
|
2019-04-18 03:16:00 +01:00
|
|
|
sha256 = "1s06h2cgk0xxwmhwj72z33bllafc1xqnxzk2yyra2rmg959778qw";
|
2014-04-09 01:37:47 +01:00
|
|
|
};
|
|
|
|
|
2018-02-22 14:15:55 +00:00
|
|
|
outputs = [ "out" "lib" "dev" "man" ];
|
|
|
|
|
2017-02-28 22:55:18 +00:00
|
|
|
buildInputs = [ getopt makeWrapper ];
|
2015-03-27 00:54:08 +00:00
|
|
|
|
2014-04-09 01:37:47 +01:00
|
|
|
patchPhase = ''
|
2015-03-27 00:54:08 +00:00
|
|
|
patchShebangs .
|
2014-04-09 01:37:47 +01:00
|
|
|
'';
|
|
|
|
|
2018-08-10 01:27:39 +01:00
|
|
|
checkInputs = [ utillinux ];
|
|
|
|
doCheck = false; # dependency cycle
|
|
|
|
|
2017-05-04 16:21:52 +01: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 11:53:46 +01: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;
|
2019-05-03 02:29:12 +01:00
|
|
|
badPlatforms = [
|
|
|
|
"alpha-linux"
|
|
|
|
"riscv64-linux" "riscv32-linux"
|
|
|
|
"sparc-linux" "sparc64-linux"
|
|
|
|
];
|
2019-01-26 10:01:09 +00:00
|
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
2014-04-09 01:37:47 +01:00
|
|
|
};
|
|
|
|
}
|