summary refs log tree commit diff
path: root/pkgs/development/compilers/rust/bootstrap.nix
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2017-06-15 19:57:00 -0400
committerGraham Christensen <graham@grahamc.com>2017-06-15 19:57:00 -0400
commitba9c71b999b1aa28dd2af6d23359d2db7b5da8ac (patch)
tree07e750cd82df0092c37c015d324861a2f8f02f18 /pkgs/development/compilers/rust/bootstrap.nix
parent517d65ec9b5ed54e1477eefdda00d0a172d07a5d (diff)
downloadnixlib-ba9c71b999b1aa28dd2af6d23359d2db7b5da8ac.tar
nixlib-ba9c71b999b1aa28dd2af6d23359d2db7b5da8ac.tar.gz
nixlib-ba9c71b999b1aa28dd2af6d23359d2db7b5da8ac.tar.bz2
nixlib-ba9c71b999b1aa28dd2af6d23359d2db7b5da8ac.tar.lz
nixlib-ba9c71b999b1aa28dd2af6d23359d2db7b5da8ac.tar.xz
nixlib-ba9c71b999b1aa28dd2af6d23359d2db7b5da8ac.tar.zst
nixlib-ba9c71b999b1aa28dd2af6d23359d2db7b5da8ac.zip
rustc.bootstrap: 1.17.0 -> 1.16.0
bootstrapping rust requires the prior version of rust according to #rust-internals

they theorize this could be causing the build problems on i686
Diffstat (limited to 'pkgs/development/compilers/rust/bootstrap.nix')
-rw-r--r--pkgs/development/compilers/rust/bootstrap.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/development/compilers/rust/bootstrap.nix b/pkgs/development/compilers/rust/bootstrap.nix
index 409bf465630e..ad49b1305706 100644
--- a/pkgs/development/compilers/rust/bootstrap.nix
+++ b/pkgs/development/compilers/rust/bootstrap.nix
@@ -12,16 +12,17 @@ let
     then "x86_64-apple-darwin"
     else throw "missing bootstrap url for platform ${stdenv.system}";
 
-  # fetch hashes by running `print-hashes.sh 1.17.0`
+  # fetch hashes by patching print-hashes.sh to not use the "$DATE" variable
+  # then running `print-hashes.sh 1.16.0`
   bootstrapHash =
     if stdenv.system == "i686-linux"
-    then "39d16ce0f618ba37ee1024b83e4822a2d38e6ba9f341ff2020d34df94c7a6beb"
+    then "b5859161ebb182d3b75fa14a5741e5de87b088146fb0ef4a30f3b2439c6179c5"
     else if stdenv.system == "x86_64-linux"
-    then "bbb0e249a7a3e8143b569706c7d2e7e5f51932c753b7fd26c58ccd2015b02c6b"
+    then "48621912c242753ba37cad5145df375eeba41c81079df46f93ffb4896542e8fd"
     else if stdenv.system == "i686-darwin"
-    then "308132b33d4002f95a725c2d31b975ff37905e3644894ed86e614b03ded70265"
+    then "26356b14164354725bd0351e8084f9b164abab134fb05cddb7758af35aad2065"
     else if stdenv.system == "x86_64-darwin"
-    then "1689060c07ec727e9756f19c9373045668471ab56fd8f53e92701150bbe2032b"
+    then "2d08259ee038d3a2c77a93f1a31fc59e7a1d6d1bbfcba3dba3c8213b2e5d1926"
     else throw "missing bootstrap hash for platform ${stdenv.system}";
 
   src = fetchurl {
@@ -29,7 +30,9 @@ let
      sha256 = bootstrapHash;
   };
 
-  version = "1.17.0";
+  # Note: the version  MUST be one version prior to the version we're
+  # building
+  version = "1.16.0";
 in import ./binaryBuild.nix
   { inherit stdenv fetchurl makeWrapper cacert zlib curl;
     buildRustPackage = null;