build nix head successfully

This commit is contained in:
Joel Taylor
2014-09-09 13:54:57 -07:00
parent 6f949b2e87
commit fa9b1f9cda
6 changed files with 18 additions and 15 deletions
+7 -1
View File
@@ -37,7 +37,6 @@ rec {
inherit config;
stdenv = stdenvNative;
pkgs = stdenvNativePkgs;
haveLibCxx = true;
};
stdenvDarwinNaked = import ./darwin {
@@ -47,6 +46,13 @@ rec {
haveLibCxx = false;
};
stdenvDarwin33 = import ./darwin {
inherit config;
stdenv = stdenvNative;
pkgs = stdenvNativePkgs;
useClang33 = true;
};
# Linux standard environment.
stdenvLinux = (import ./linux { inherit system allPackages platform config;}).stdenvLinux;