lol

audit: install bash completion

Grimmauld e9552294 5226b9c2

+6
+6
pkgs/by-name/au/audit/package.nix
··· 10 10 swig, 11 11 pkgsCross, 12 12 libcap_ng, 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 + 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 + 90 + postInstall = '' 91 + installShellCompletion --bash init.d/audit.bash_completion 92 + ''; 87 93 88 94 enableParallelBuilding = true; 89 95