stdenv multiple-outputs: change propagation rules

Now development stuff is propagated from the first output,
and userEnvPkgs from the one with binaries.

Also don't move *.la files (yet). It causes problems, and they're small.
This commit is contained in:
Vladimír Čunát
2015-04-18 19:30:28 +02:00
parent bf414c9d4f
commit d484c392aa
5 changed files with 55 additions and 38 deletions
+1 -1
View File
@@ -119,7 +119,7 @@ stdenv.mkDerivation ({
installFlags = [ "sysconfdir=$(out)/etc" ];
outputs = [ "out" "dev" "bin" "static" ];
outputs = [ "dev" "out" "bin" "static" ];
buildInputs = [ ]
++ stdenv.lib.optionals (cross != null) [ gccCross ]