mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 19:15:39 +00:00
c4eaa26cde
Now builds rustcBeta (1.10.0) and rustcMaster (1.11.0).
14 lines
517 B
Nix
14 lines
517 B
Nix
# Please make sure to check if rustfmt still builds when updating nightly
|
|
{ stdenv, callPackage, rustcStable }:
|
|
|
|
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;
|
|
}
|