nixpkgs/pkgs/development/compilers/rustc/head.nix

14 lines
517 B
Nix
Raw Normal View History

2015-09-05 09:48:36 -07:00
# Please make sure to check if rustfmt still builds when updating nightly
{ stdenv, callPackage, rustcStable }:
2015-06-19 05:23:18 -07:00
callPackage ./generic.nix {
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;
}