3
0
Fork 0
forked from mirrors/nixpkgs

audit: reduce non-musl dependencies after parent commit

Reduction of build-time closures, and avoiding a mass rebuild now.
And I believe these belong into native inputs.
This commit is contained in:
Vladimír Čunát 2019-06-09 15:59:13 +02:00
parent bb04ef538b
commit b73f382f25
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -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 = [