Skip to content

Commit

Permalink
audit: reduce non-musl dependencies after parent commit
Browse files Browse the repository at this point in the history
Reduction of build-time closures, and avoiding a mass rebuild now.
And I believe these belong into native inputs.
  • Loading branch information
vcunat committed Jun 9, 2019
1 parent bb04ef5 commit b73f382
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/os-specific/linux/audit/default.nix
Expand Up @@ -17,7 +17,9 @@ stdenv.mkDerivation rec {

outputs = [ "bin" "dev" "out" "man" ];

depsBuildBuild = [ buildPackages.stdenv.cc autoconf automake libtool ];
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = stdenv.lib.optionals stdenv.hostPlatform.isMusl
[ autoconf automake libtool ];
buildInputs = stdenv.lib.optional enablePython python;

configureFlags = [
Expand Down

0 comments on commit b73f382

Please sign in to comment.