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:
parent
bb04ef538b
commit
b73f382f25
|
@ -17,7 +17,9 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
outputs = [ "bin" "dev" "out" "man" ];
|
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;
|
buildInputs = stdenv.lib.optional enablePython python;
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
|
|
Loading…
Reference in a new issue