2015-09-05 09:48:36 -07:00
|
|
|
# Please make sure to check if rustfmt still builds when updating nightly
|
2016-05-31 12:16:18 -07:00
|
|
|
{ stdenv, callPackage, rustcStable }:
|
2015-09-22 21:18:07 -07:00
|
|
|
|
2015-06-19 05:23:18 -07:00
|
|
|
callPackage ./generic.nix {
|
2016-05-31 12:16:18 -07:00
|
|
|
shortVersion = "master-1.11.0";
|
|
|
|
forceBundledLLVM = false;
|
|
|
|
srcRev = "298730e7032cd55809423773da397cd5c7d827d4";
|
|
|
|
srcSha = "0hyz5j1z75sjkgsifzgxviv3b1lhgaz8wqwvmq80xx5vd78yd0c1";
|
|
|
|
patches = [ ./patches/disable-lockfile-check.patch
|
|
|
|
./patches/use-rustc-1.9.0.patch ] ++
|
|
|
|
stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
|
|
|
|
rustc = rustcStable;
|
2014-07-31 11:42:20 -07:00
|
|
|
}
|