tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
audit: enable strictDeps
checked with diffoscope
Artturin
3 years ago
a7f9bb67
37eeaeb8
+5
-3
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
audit
default.nix
+5
-3
pkgs/os-specific/linux/audit/default.nix
···
2
2
lib, stdenv, buildPackages, fetchurl, fetchpatch,
3
3
runCommand,
4
4
autoreconfHook,
5
5
-
autoconf, automake, libtool,
5
5
+
autoconf, automake, libtool, bash,
6
6
# Enabling python support while cross compiling would be possible, but
7
7
# the configure script tries executing python to gather info instead of
8
8
# relying on python3-config exclusively
···
21
21
22
22
outputs = [ "bin" "dev" "out" "man" ];
23
23
24
24
+
strictDeps = true;
24
25
depsBuildBuild = [ buildPackages.stdenv.cc ];
25
25
-
nativeBuildInputs = [ autoreconfHook ];
26
26
-
buildInputs = lib.optionals enablePython [ python3 swig ];
26
26
+
nativeBuildInputs = [ autoreconfHook ]
27
27
+
++ lib.optionals enablePython [ python3 swig ];
28
28
+
buildInputs = [ bash ];
27
29
28
30
configureFlags = [
29
31
# z/OS plugin is not useful on Linux,