mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
glibc: Make one exception for output order
Usages like '${stdenv.cc.libc}/lib/ld-linux-x86-64.so.2' are much more common than the bin output.
This commit is contained in:
parent
a17216af4c
commit
e065baafba
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ stdenv.mkDerivation ({
|
|||
|
||||
installFlags = [ "sysconfdir=$(out)/etc" ];
|
||||
|
||||
outputs = [ "bin" "dev" "out" "static" ];
|
||||
outputs = [ "out" "bin" "dev" "static" ];
|
||||
|
||||
buildInputs = lib.optionals (cross != null) [ gccCross ]
|
||||
++ lib.optionals withGd [ gd libpng ];
|
||||
|
|
Loading…
Reference in a new issue