8cd3e1e2ba
Give cargo the right name. Fix versioning. rustBeta: -> 2016-08-17 Looks like rustUnstable.rustc needs *exactly* this version.
90 lines
2.6 KiB
Nix
90 lines
2.6 KiB
Nix
{ stdenv, fetchurl, makeWrapper, cacert, zlib }:
|
|
|
|
let
|
|
inherit (stdenv.lib) optionalString;
|
|
|
|
platform =
|
|
if stdenv.system == "i686-linux"
|
|
then "i686-unknown-linux-gnu"
|
|
else if stdenv.system == "x86_64-linux"
|
|
then "x86_64-unknown-linux-gnu"
|
|
else if stdenv.system == "i686-darwin"
|
|
then "i686-apple-darwin"
|
|
else if stdenv.system == "x86_64-darwin"
|
|
then "x86_64-apple-darwin"
|
|
else abort "missing boostrap url for platform ${stdenv.system}";
|
|
|
|
# fetch hashes by running `print-hashes.sh 1.9.0`
|
|
bootstrapHash =
|
|
if stdenv.system == "i686-linux"
|
|
then "be93dd2b80a97f2877679950d56990628c6547b953294f16bf6d69c18a39edc0"
|
|
else if stdenv.system == "x86_64-linux"
|
|
then "f189303d52b37c8bb694b9d9739ae73ffa926cbdeffde1d5d6a5c6e811940293"
|
|
else if stdenv.system == "i686-darwin"
|
|
then "40d4782a58dd5bef22dbbaa7a363f3b42f844628db07205f6435ac934f350061"
|
|
else if stdenv.system == "x86_64-darwin"
|
|
then "4bb71249f4afd7cee07f63d681f9fcb1b525ee3dfd49722adab7a40024e45af7"
|
|
else throw "missing boostrap hash for platform ${stdenv.system}";
|
|
|
|
needsPatchelf = stdenv.isLinux;
|
|
|
|
src = fetchurl {
|
|
url = "https://static.rust-lang.org/dist/rust-${version}-${platform}.tar.gz";
|
|
sha256 = bootstrapHash;
|
|
};
|
|
|
|
version = "1.10.0";
|
|
in
|
|
|
|
rec {
|
|
rustc = stdenv.mkDerivation rec {
|
|
name = "rustc-bootstrap-${version}";
|
|
|
|
inherit version;
|
|
inherit src;
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
phases = ["unpackPhase" "installPhase"];
|
|
|
|
installPhase = ''
|
|
./install.sh --prefix=$out \
|
|
--components=rustc,rust-std-${platform},rust-docs
|
|
|
|
${optionalString needsPatchelf ''
|
|
patchelf \
|
|
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
|
|
"$out/bin/rustc"
|
|
''}
|
|
|
|
# Do NOT, I repeat, DO NOT use `wrapProgram` on $out/bin/rustc
|
|
# (or similar) here. It causes strange effects where rustc loads
|
|
# the wrong libraries in a bootstrap-build causing failures that
|
|
# are very hard to track dow. For details, see
|
|
# https://github.com/rust-lang/rust/issues/34722#issuecomment-232164943
|
|
'';
|
|
};
|
|
|
|
cargo = stdenv.mkDerivation rec {
|
|
name = "cargo-bootstrap-${version}";
|
|
|
|
inherit version;
|
|
inherit src;
|
|
|
|
buildInputs = [ makeWrapper zlib rustc ];
|
|
phases = ["unpackPhase" "installPhase"];
|
|
|
|
installPhase = ''
|
|
./install.sh --prefix=$out \
|
|
--components=cargo
|
|
|
|
${optionalString needsPatchelf ''
|
|
patchelf \
|
|
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
|
|
"$out/bin/cargo"
|
|
''}
|
|
|
|
wrapProgram "$out/bin/cargo" \
|
|
--suffix PATH : "${rustc}/bin"
|
|
'';
|
|
};
|
|
}
|