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
|
{
lib,
stdenv,
which,
flex,
bison,
linuxHeaders ? stdenv.cc.libc.linuxHeaders,
buildPackages,
zstd,
fetchpatch,
# apparmor deps
libapparmor,
runtimeShellPackage,
# testing
perl,
python3,
bashInteractive,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "apparmor-parser";
inherit (libapparmor) version src;
postPatch = ''
patchShebangs .
cd parser
substituteInPlace Makefile \
--replace-fail "/usr/include/linux/capability.h" "${linuxHeaders}/include/linux/capability.h"
'';
nativeBuildInputs = [
bison
flex
which
];
buildInputs = [
libapparmor
zstd
runtimeShellPackage
];
makeFlags = [
"LANGS="
"USE_SYSTEM=1"
"INCLUDEDIR=${libapparmor}/include"
"AR=${stdenv.cc.bintools.targetPrefix}ar"
"POD2MAN=${lib.getExe' buildPackages.perl "pod2man"}"
"POD2HTML=${lib.getExe' buildPackages.perl "pod2html"}"
"MANDIR=share/man"
]
++ lib.optional finalAttrs.finalPackage.doCheck "PROVE=${lib.getExe' perl "prove"}";
installFlags = [
"DESTDIR=$(out)"
"DISTRO=unknown"
];
preCheck = "pushd ./tst";
checkTarget = "tests";
postCheck = "popd";
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
nativeCheckInputs = [
bashInteractive
perl
python3
];
strictDeps = true;
meta = libapparmor.meta // {
description = "Mandatory access control system - core library";
mainProgram = "apparmor_parser";
};
})
|