summary refs log tree commit diff
path: root/pkgs/stdenv/darwin
diff options
context:
space:
mode:
authorDan Peebles <pumpkin@me.com>2016-09-14 01:02:01 -0400
committerDan Peebles <pumpkin@me.com>2016-09-14 01:02:01 -0400
commitff945c5c83f27e087ccc0b035cd3e6605340bd61 (patch)
tree20aca28a88ed6d40d4707a5d34a8e3693687c19e /pkgs/stdenv/darwin
parent28a0da5edc23b8af5396f1725a05965a81ab3513 (diff)
downloadnixpkgs-ff945c5c83f27e087ccc0b035cd3e6605340bd61.tar
nixpkgs-ff945c5c83f27e087ccc0b035cd3e6605340bd61.tar.gz
nixpkgs-ff945c5c83f27e087ccc0b035cd3e6605340bd61.tar.bz2
nixpkgs-ff945c5c83f27e087ccc0b035cd3e6605340bd61.tar.lz
nixpkgs-ff945c5c83f27e087ccc0b035cd3e6605340bd61.tar.xz
nixpkgs-ff945c5c83f27e087ccc0b035cd3e6605340bd61.tar.zst
nixpkgs-ff945c5c83f27e087ccc0b035cd3e6605340bd61.zip
stdenv-darwin: downgrade default LLVM back to 3.7
The 3.8 upgrade was premature and appears to be breaking a load of stuff
that I can't look into right now. Will take it back to 3.8 and test more
thoroughly before pushing more broadly. I should learn to change fewer
variables at a time :)
Diffstat (limited to 'pkgs/stdenv/darwin')
-rw-r--r--pkgs/stdenv/darwin/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/stdenv/darwin/default.nix b/pkgs/stdenv/darwin/default.nix
index 227ddfa8a69..b530b7578e8 100644
--- a/pkgs/stdenv/darwin/default.nix
+++ b/pkgs/stdenv/darwin/default.nix
@@ -6,14 +6,14 @@
 # Allow passing in bootstrap files directly so we can test the stdenv bootstrap process when changing the bootstrap tools
 , bootstrapFiles ? let
   fetch = { file, sha256, executable ? true }: import <nix/fetchurl.nix> {
-    url = "http://tarballs.nixos.org/stdenv-darwin/x86_64/45ea46c1894f8fcc545ca9f367ba54c8c280b762/${file}";
+    url = "http://tarballs.nixos.org/stdenv-darwin/x86_64/62540508837664e9b366e36d1265502db4329a6e/${file}";
     inherit sha256 system executable;
   }; in {
     sh      = fetch { file = "sh";    sha256 = "1qpg16qbqqkmcr5an4d73p6q55izhlzmdd3nvid8gp7f3f9spbz7"; };
     bzip2   = fetch { file = "bzip2"; sha256 = "1g67sh51fa2ws9wch5gznvrmmh27mks3dbnp6gvac43qxdnv6mpz"; };
     mkdir   = fetch { file = "mkdir"; sha256 = "1lkp6y33lsrj9yif1cfrw5g021pffynrdscrz3ds19hslg55w4dw"; };
     cpio    = fetch { file = "cpio";  sha256 = "115pgrl0pcq2h4yfqrmfvffl0dcabw4mgkc91aphd913wrzfmlz9"; };
-    tarball = fetch { file = "bootstrap-tools.cpio.bz2"; sha256 = "1h5dr8vk7dvvbdkpszpd6zkx3799zccsflnw35wvmjc2fp0dyyd5"; executable = false; };
+    tarball = fetch { file = "bootstrap-tools.cpio.bz2"; sha256 = "1ak16xrj41l15ads5l2kfgbyrb1lczzhmi8nln5h0np8r3w9frw9"; executable = false; };
   }
 }: