tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
audit: install bash completion
Grimmauld
7 months ago
e9552294
5226b9c2
+6
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
au
audit
package.nix
+6
pkgs/by-name/au/audit/package.nix
···
10
10
swig,
11
11
pkgsCross,
12
12
libcap_ng,
13
13
+
installShellFiles,
13
14
14
15
# Enabling python support while cross compiling would be possible, but the
15
16
# configure script tries executing python to gather info instead of relying on
···
61
62
62
63
nativeBuildInputs = [
63
64
autoreconfHook
65
65
+
installShellFiles
64
66
]
65
67
++ lib.optionals enablePython [
66
68
python3
···
84
86
"--with-libcap-ng=yes"
85
87
(if enablePython then "--with-python" else "--without-python")
86
88
];
89
89
+
90
90
+
postInstall = ''
91
91
+
installShellCompletion --bash init.d/audit.bash_completion
92
92
+
'';
87
93
88
94
enableParallelBuilding = true;
89
95