summary refs log tree commit diff
path: root/pkgs/development/libraries/glibc
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2015-01-13 10:00:42 -0500
committerEric Seidel <gridaphobe@gmail.com>2015-01-14 20:26:57 -0800
commit16fe4be790f541d68c01897640fda11f9673b8e9 (patch)
tree80937c8e103a9a96fcd3ce9e58f9d241cebded96 /pkgs/development/libraries/glibc
parent48f63c2f2e3752df2a0b73cad9b9bba9eda8ac60 (diff)
downloadnixlib-16fe4be790f541d68c01897640fda11f9673b8e9.tar
nixlib-16fe4be790f541d68c01897640fda11f9673b8e9.tar.gz
nixlib-16fe4be790f541d68c01897640fda11f9673b8e9.tar.bz2
nixlib-16fe4be790f541d68c01897640fda11f9673b8e9.tar.lz
nixlib-16fe4be790f541d68c01897640fda11f9673b8e9.tar.xz
nixlib-16fe4be790f541d68c01897640fda11f9673b8e9.tar.zst
nixlib-16fe4be790f541d68c01897640fda11f9673b8e9.zip
Add isGNU attribute to gccs
Diffstat (limited to 'pkgs/development/libraries/glibc')
-rw-r--r--pkgs/development/libraries/glibc/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/glibc/default.nix b/pkgs/development/libraries/glibc/default.nix
index 3273b89c84ea..dcd7acf9b854 100644
--- a/pkgs/development/libraries/glibc/default.nix
+++ b/pkgs/development/libraries/glibc/default.nix
@@ -8,7 +8,7 @@
 , withGd ? false, gd ? null, libpng ? null
 }:
 
-assert stdenv.cc ? gcc;
+assert stdenv.cc.cc.isGNU or false;
 
 let
   build = import ./common.nix;