pkgsStatic: fix eval on Darwin

This commit is contained in:
Jude Taylor
2020-04-28 08:41:48 -07:00
parent 7610f0417b
commit 0de6275003
3 changed files with 10 additions and 5 deletions
+2
View File
@@ -63,6 +63,8 @@ in lib.init bootStages ++ [
# `tryEval` wouldn't catch, wrecking accessing previous stages
# when there is a C compiler and everything should be fine.
then throw "no C compiler provided for this platform"
else if crossSystem.isDarwin
then buildPackages.llvmPackages.clang
else if crossSystem.useLLVM or false
then buildPackages.llvmPackages_8.lldClang
else buildPackages.gcc;