Partially revert "make-bootstrap-tools.darwin: upgrade to llvm 3.8"

This partially reverts commit bddf4e2180.

cc @copumpkin

Was breaking nix-build <nixpkgs/nixos/release-combined.nix> -A nixpkgs.tarball
See http://hydra.nixos.org/build/38886695/nixlog/2
This commit is contained in:
obadz 2016-08-21 15:25:57 +01:00
parent 68936edfb3
commit 2a552a0888

View file

@ -1,6 +1,6 @@
{ pkgspath ? ../../.., test-pkgspath ? pkgspath }:
{ system ? builtins.currentSystem }:
with import pkgspath { system = builtins.currentSystem; };
with import ../../.. { inherit system; };
let
llvmPackages = llvmPackages_38;
@ -297,8 +297,8 @@ in rec {
# The ultimate test: bootstrap a whole stdenv from the tools specified above and get a package set out of it
test-pkgs = let
stdenv = import "${test-pkgspath}/pkgs/stdenv/darwin" { inherit system bootstrapFiles; };
in import test-pkgspath {
stdenv = import ./. { inherit system bootstrapFiles; };
in import ../../.. {
inherit system;
bootStdenv = stdenv.stdenvDarwin;
};