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
lib, stdenv, buildPackages, fetchurl, fetchpatch,
3
runCommand,
4
autoreconfHook,
5
-
autoconf, automake, libtool,
6
# Enabling python support while cross compiling would be possible, but
7
# the configure script tries executing python to gather info instead of
8
# relying on python3-config exclusively
···
21
22
outputs = [ "bin" "dev" "out" "man" ];
23
0
24
depsBuildBuild = [ buildPackages.stdenv.cc ];
25
-
nativeBuildInputs = [ autoreconfHook ];
26
-
buildInputs = lib.optionals enablePython [ python3 swig ];
0
27
28
configureFlags = [
29
# z/OS plugin is not useful on Linux,
···
2
lib, stdenv, buildPackages, fetchurl, fetchpatch,
3
runCommand,
4
autoreconfHook,
5
+
autoconf, automake, libtool, bash,
6
# Enabling python support while cross compiling would be possible, but
7
# the configure script tries executing python to gather info instead of
8
# relying on python3-config exclusively
···
21
22
outputs = [ "bin" "dev" "out" "man" ];
23
24
+
strictDeps = true;
25
depsBuildBuild = [ buildPackages.stdenv.cc ];
26
+
nativeBuildInputs = [ autoreconfHook ]
27
+
++ lib.optionals enablePython [ python3 swig ];
28
+
buildInputs = [ bash ];
29
30
configureFlags = [
31
# z/OS plugin is not useful on Linux,