make isClang work the way a user might expect

This commit is contained in:
Jude Taylor
2015-08-12 11:27:54 -07:00
parent dc74a81129
commit ef95107ddc
5 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
, cc ? null, libc ? null, binutils ? null, coreutils ? null, shell ? stdenv.shell
, zlib ? null, extraPackages ? [], extraBuildCommands ? ""
, dyld ? null # TODO: should this be a setup-hook on dyld?
, isGNU ? false, isClang ? false
, isGNU ? false, isClang ? cc.isClang or false
}:
with stdenv.lib;