We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9fd61f commit 025afdaCopy full SHA for 025afda
pkgs/by-name/au/audit/package.nix
@@ -4,6 +4,7 @@
4
fetchFromGitHub,
5
autoreconfHook,
6
bash,
7
+ bashNonInteractive,
8
buildPackages,
9
linuxHeaders,
10
python3,
@@ -89,6 +90,14 @@ stdenv.mkDerivation (finalAttrs: {
89
90
(if enablePython then "--with-python" else "--without-python")
91
];
92
93
+ __structuredAttrs = true;
94
+
95
+ # lib output is part of the mandatory nixos system closure, so avoid bash here
96
+ outputChecks.lib.disallowedRequisites = [
97
+ bash
98
+ bashNonInteractive
99
+ ];
100
101
postInstall = ''
102
installShellCompletion --bash init.d/audit.bash_completion
103
'';
0 commit comments