2015-09-05 18:48:36 +02:00
|
|
|
# Please make sure to check if rustfmt still builds when updating nightly
|
2015-03-01 20:31:57 +01:00
|
|
|
{ stdenv, callPackage }:
|
2015-09-23 06:18:07 +02:00
|
|
|
|
2015-06-19 14:23:18 +02:00
|
|
|
callPackage ./generic.nix {
|
2016-01-10 18:25:07 +01:00
|
|
|
shortVersion = "2016-01-10";
|
2015-03-01 20:31:57 +01:00
|
|
|
isRelease = false;
|
2016-01-10 18:25:07 +01:00
|
|
|
forceBundledLLVM = false;
|
|
|
|
srcRev = "d70ab2bdf16c22b9f3ff0230089b44855e3f1593";
|
|
|
|
srcSha = "13ssis1bdgg8sdkgrvxcbd1qcfmf7q6bv4akfxrjgdm44l1n1l97";
|
2015-09-23 06:18:07 +02:00
|
|
|
|
|
|
|
/* Rust is bootstrapped from an earlier built version. We need
|
|
|
|
to fetch these earlier versions, which vary per platform.
|
|
|
|
The shapshot info you want can be found at
|
|
|
|
https://github.com/rust-lang/rust/blob/{$shortVersion}/src/snapshots.txt
|
|
|
|
with the set you want at the top.
|
|
|
|
*/
|
|
|
|
|
2016-01-10 18:25:07 +01:00
|
|
|
snapshotHashLinux686 = "a09c4a4036151d0cb28e265101669731600e01f2";
|
|
|
|
snapshotHashLinux64 = "97e2a5eb8904962df8596e95d6e5d9b574d73bf4";
|
|
|
|
snapshotHashDarwin686 = "ca52d2d3ba6497ed007705ee3401cf7efc136ca1";
|
|
|
|
snapshotHashDarwin64 = "3c44ffa18f89567c2b81f8d695e711c86d81ffc7";
|
|
|
|
snapshotDate = "2015-12-18";
|
|
|
|
snapshotRev = "3391630";
|
2015-09-23 06:18:07 +02:00
|
|
|
|
|
|
|
patches = [ ./patches/remove-uneeded-git.patch ]
|
2015-12-24 00:21:35 +01:00
|
|
|
++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
|
2014-07-31 20:42:20 +02:00
|
|
|
}
|
2015-03-01 20:31:57 +01:00
|
|
|
|