blob: f3721858b2da13f39d4e8d62bb0bb222981bf192 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
{
lib,
stdenv,
fetchurl,
getopt,
util-linuxMinimal,
which,
gperf,
nix-update-script,
python3Packages,
}:
stdenv.mkDerivation rec {
pname = "libseccomp";
version = "2.6.0";
src = fetchurl {
url = "https://github.com/seccomp/libseccomp/releases/download/v${version}/libseccomp-${version}.tar.gz";
hash = "sha256-g7YIUjLRWIw3ncm5yuR7s3QHzyYubnSZPGG6ctKnhNw=";
};
patches = [
./oob-read.patch
];
outputs = [
"out"
"lib"
"dev"
"man"
"pythonsrc"
];
nativeBuildInputs = [ gperf ];
buildInputs = [ getopt ];
postPatch = ''
patchShebangs .
'';
nativeCheckInputs = [
util-linuxMinimal
which
];
doCheck = !(stdenv.targetPlatform.useLLVM or false);
# Hack to ensure that patchelf --shrink-rpath get rids of a $TMPDIR reference.
preFixup = "rm -rfv src";
# Copy the python module code into a tarball that we can export and use as the
# src input for buildPythonPackage calls
postInstall = ''
cp -R ./src/python/ tmp-pythonsrc/
tar -zcf $pythonsrc --mtime="@$SOURCE_DATE_EPOCH" --sort=name --transform s/tmp-pythonsrc/python-foundationdb/ ./tmp-pythonsrc/
'';
passthru = {
updateScript = nix-update-script { };
tests = {
inherit (python3Packages) seccomp;
};
};
meta = with lib; {
description = "High level library for the Linux Kernel seccomp filter";
mainProgram = "scmp_sys_resolver";
homepage = "https://github.com/seccomp/libseccomp";
license = licenses.lgpl21Only;
platforms = platforms.linux;
badPlatforms = [
"alpha-linux"
"m68k-linux"
"microblaze-linux"
"microblazeel-linux"
"riscv32-linux"
"sparc-linux"
"sparc64-linux"
];
maintainers = with maintainers; [ thoughtpolice ];
};
}
|