summary refs log tree commit diff
path: root/pkgs/development/compilers/rust
diff options
context:
space:
mode:
authorJoachim Schiele <js@lastlog.de>2016-12-12 18:59:10 +0100
committerJoachim Schiele <js@lastlog.de>2016-12-12 18:59:10 +0100
commit1f811a67274e340d9e13987801fe726308e748ab (patch)
tree33f0537d7c2efe4fbc388b68814969bf13d82948 /pkgs/development/compilers/rust
parenta50ad4344700e0d554bbe5207a73e3f3f651593c (diff)
downloadnixlib-1f811a67274e340d9e13987801fe726308e748ab.tar
nixlib-1f811a67274e340d9e13987801fe726308e748ab.tar.gz
nixlib-1f811a67274e340d9e13987801fe726308e748ab.tar.bz2
nixlib-1f811a67274e340d9e13987801fe726308e748ab.tar.lz
nixlib-1f811a67274e340d9e13987801fe726308e748ab.tar.xz
nixlib-1f811a67274e340d9e13987801fe726308e748ab.tar.zst
nixlib-1f811a67274e340d9e13987801fe726308e748ab.zip
rustcNightlyBin.rustc: revision bump 2016-11-26 to 2016-12-05 with fix to contain components as libcore
Diffstat (limited to 'pkgs/development/compilers/rust')
-rw-r--r--pkgs/development/compilers/rust/nightlyBin.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/compilers/rust/nightlyBin.nix b/pkgs/development/compilers/rust/nightlyBin.nix
index 47d918ddf3e6..a60d17fb7cbe 100644
--- a/pkgs/development/compilers/rust/nightlyBin.nix
+++ b/pkgs/development/compilers/rust/nightlyBin.nix
@@ -9,17 +9,17 @@ let
 
   bootstrapHash =
     if stdenv.system == "x86_64-linux"
-    then "1hsvf1vj18fqxkqw8jhnwahhk2q5xcl5396czr034fphmp5n4haw"
+    then "1afsqaavhwiaxm38zr08cbq0985c7lrb1jzdcmq0jh6y8rb8ikff"
     else throw "missing boostrap hash for platform ${stdenv.system}";
 
   needsPatchelf = stdenv.isLinux;
 
   src = fetchurl {
-     url = "https://static.rust-lang.org/dist/${version}/rustc-nightly-${platform}.tar.gz";
+     url = "https://static.rust-lang.org/dist/${version}/rust-nightly-${platform}.tar.gz";
      sha256 = bootstrapHash;
   };
 
-  version = "2016-11-26";
+  version = "2016-12-05";
 in
 
 rec {
@@ -41,7 +41,7 @@ rec {
 
     installPhase = ''
       ./install.sh --prefix=$out \
-        --components=rustc
+        --components=rustc,rust-std-x86_64-unknown-linux-gnu
 
       ${optionalString needsPatchelf ''
         patchelf \