summary refs log tree commit diff
path: root/pkgs/development/libraries/glibc/common.nix
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-05-29 19:25:54 +0300
committerArtturin <Artturin@artturin.com>2022-05-29 19:54:32 +0300
commit513b7f1010e737dcac47645c8af3d7483ddc29d4 (patch)
tree1392603579dbc12164230c3090093fa8b0dcb583 /pkgs/development/libraries/glibc/common.nix
parent5908b6d222260e12d1456836a3646bedf7f3f7af (diff)
downloadnixpkgs-513b7f1010e737dcac47645c8af3d7483ddc29d4.tar
nixpkgs-513b7f1010e737dcac47645c8af3d7483ddc29d4.tar.gz
nixpkgs-513b7f1010e737dcac47645c8af3d7483ddc29d4.tar.bz2
nixpkgs-513b7f1010e737dcac47645c8af3d7483ddc29d4.tar.lz
nixpkgs-513b7f1010e737dcac47645c8af3d7483ddc29d4.tar.xz
nixpkgs-513b7f1010e737dcac47645c8af3d7483ddc29d4.tar.zst
nixpkgs-513b7f1010e737dcac47645c8af3d7483ddc29d4.zip
glibc_multi: match output ordering of glibc
glibc has an exception in that 'out' is the default output instead of 'bin'

it should be matched here for consistency
Diffstat (limited to 'pkgs/development/libraries/glibc/common.nix')
-rw-r--r--pkgs/development/libraries/glibc/common.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/libraries/glibc/common.nix b/pkgs/development/libraries/glibc/common.nix
index 91c3d55926a..4b58da1539d 100644
--- a/pkgs/development/libraries/glibc/common.nix
+++ b/pkgs/development/libraries/glibc/common.nix
@@ -201,6 +201,7 @@ stdenv.mkDerivation ({
 
   installFlags = [ "sysconfdir=$(out)/etc" ];
 
+  # out as the first output is an exception exclusive to glibc
   outputs = [ "out" "bin" "dev" "static" ];
 
   depsBuildBuild = [ buildPackages.stdenv.cc ];