tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
audit: disallow bash requirement for lib output
Grimmauld
7 months ago
025afda8
a9fd61ff
+9
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
au
audit
package.nix
+9
pkgs/by-name/au/audit/package.nix
···
4
4
fetchFromGitHub,
5
5
autoreconfHook,
6
6
bash,
7
7
+
bashNonInteractive,
7
8
buildPackages,
8
9
linuxHeaders,
9
10
python3,
···
87
88
# see auditd-plugins(5)
88
89
"--with-libcap-ng=yes"
89
90
(if enablePython then "--with-python" else "--without-python")
91
91
+
];
92
92
+
93
93
+
__structuredAttrs = true;
94
94
+
95
95
+
# lib output is part of the mandatory nixos system closure, so avoid bash here
96
96
+
outputChecks.lib.disallowedRequisites = [
97
97
+
bash
98
98
+
bashNonInteractive
90
99
];
91
100
92
101
postInstall = ''