2014-07-31 19:42:20 +01:00
|
|
|
{stdenv, fetchurl, fetchgit, which, file, perl, curl, python27, makeWrapper}:
|
|
|
|
|
2014-08-24 17:52:34 +01:00
|
|
|
assert stdenv.gcc.gcc != null;
|
|
|
|
|
2014-07-31 19:42:20 +01:00
|
|
|
/* Rust's build process has a few quirks :
|
|
|
|
|
|
|
|
- It requires some patched in llvm that haven't landed upstream, so it
|
|
|
|
compiles its own llvm. This might change in the future, so at some
|
|
|
|
point we may be able to switch to nix's llvm.
|
|
|
|
|
|
|
|
- The Rust compiler is written is Rust, so it requires a bootstrap
|
|
|
|
compiler, which is downloaded during the build. To make the build
|
|
|
|
pure, we download it ourself before and put it where it is
|
|
|
|
expected. Once the language is stable (1.0) , we might want to
|
|
|
|
switch it to use nix's packaged rust compiler.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2014-09-29 13:57:00 +01:00
|
|
|
with ((import ./common.nix) {inherit stdenv; version = "0.12.0-pre-9a68da740"; });
|
2014-07-31 19:42:20 +01:00
|
|
|
|
|
|
|
let snapshot = if stdenv.system == "i686-linux"
|
2014-09-23 23:22:30 +01:00
|
|
|
then "5c2132b65f45c21b43d28de6a9460978b1a7b08a"
|
2014-07-31 19:42:20 +01:00
|
|
|
else if stdenv.system == "x86_64-linux"
|
2014-09-23 23:22:30 +01:00
|
|
|
then "152be582853c2cf1ddcc88b085153b52ebbeb065"
|
2014-07-31 19:42:20 +01:00
|
|
|
else if stdenv.system == "i686-darwin"
|
2014-09-23 23:22:30 +01:00
|
|
|
then "7adbb076aeae8e1d9bdf3fe968bc7ef8a8fe0096"
|
2014-07-31 19:42:20 +01:00
|
|
|
else if stdenv.system == "x86_64-darwin"
|
2014-09-23 23:22:30 +01:00
|
|
|
then "152be582853c2cf1ddcc88b085153b52ebbeb065"
|
2014-07-31 19:42:20 +01:00
|
|
|
else abort "no-snapshot for platform ${stdenv.system}";
|
2014-09-23 23:22:30 +01:00
|
|
|
snapshotDate = "2014-09-22";
|
|
|
|
snapshotRev = "437179e";
|
2014-07-31 19:42:20 +01:00
|
|
|
snapshotName = "rust-stage0-${snapshotDate}-${snapshotRev}-${platform}-${snapshot}.tar.bz2";
|
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
inherit name;
|
|
|
|
inherit version;
|
|
|
|
inherit meta;
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = https://github.com/rust-lang/rust;
|
2014-09-23 23:22:30 +01:00
|
|
|
rev = "9a68da7401d9bef645a8b6a4e0ce4cae12604df4";
|
|
|
|
sha256 = "1nrmahz9scv06v8pyfgjl902dh9947irpqi78lh11r5lyixia8ci";
|
2014-07-31 19:42:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# We need rust to build rust. If we don't provide it, configure will try to download it.
|
|
|
|
snapshot = stdenv.mkDerivation {
|
|
|
|
name = "rust-stage0";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://static.rust-lang.org/stage0-snapshots/${snapshotName}";
|
|
|
|
sha1 = snapshot;
|
|
|
|
};
|
|
|
|
dontStrip = true;
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "$out"
|
|
|
|
cp -r bin "$out/bin"
|
|
|
|
'' + (if stdenv.isLinux then ''
|
|
|
|
patchelf --interpreter "${stdenv.glibc}/lib/${stdenv.gcc.dynamicLinker}" \
|
|
|
|
--set-rpath "${stdenv.gcc.gcc}/lib/:${stdenv.gcc.gcc}/lib64/" \
|
|
|
|
"$out/bin/rustc"
|
|
|
|
'' else "");
|
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [ "--enable-local-rust" "--local-rust-root=$snapshot" ];
|
|
|
|
|
|
|
|
# The compiler requires cc, so we patch the source to tell it where to find it
|
2014-09-16 12:51:57 +01:00
|
|
|
patches = [ ./hardcode_paths.HEAD.patch ./local_stage0.HEAD.patch ];
|
2014-07-31 19:42:20 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/librustc/back/link.rs \
|
2014-09-23 23:22:30 +01:00
|
|
|
--subst-var-by "ccPath" "${stdenv.gcc}/bin/cc"
|
|
|
|
substituteInPlace src/librustc_back/archive.rs \
|
2014-07-31 19:42:20 +01:00
|
|
|
--subst-var-by "arPath" "${stdenv.gcc.binutils}/bin/ar"
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ which file perl curl python27 makeWrapper ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
}
|