2017-05-30 06:48:06 -07:00
|
|
|
{ stdenv, callPackage, recurseIntoAttrs, makeRustPlatform, llvm, fetchurl
|
2017-03-24 16:59:14 -07:00
|
|
|
, targets ? []
|
|
|
|
, targetToolchains ? []
|
|
|
|
, targetPatches ? []
|
|
|
|
}:
|
2016-06-14 03:49:48 -07:00
|
|
|
|
|
|
|
let
|
2016-07-09 00:01:49 -07:00
|
|
|
rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {}));
|
2017-11-23 03:47:03 -08:00
|
|
|
version = "1.22.1";
|
2016-06-14 03:49:48 -07:00
|
|
|
in
|
|
|
|
rec {
|
|
|
|
rustc = callPackage ./rustc.nix {
|
2018-02-19 12:26:54 -08:00
|
|
|
inherit stdenv llvm targets targetPatches targetToolchains rustPlatform version;
|
2017-05-30 06:48:06 -07:00
|
|
|
|
2017-10-04 09:41:16 -07:00
|
|
|
forceBundledLLVM = true;
|
|
|
|
|
2016-06-14 03:49:48 -07:00
|
|
|
configureFlags = [ "--release-channel=stable" ];
|
2017-05-30 06:48:06 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz";
|
2017-11-23 03:47:03 -08:00
|
|
|
sha256 = "1lrzzp0nh7s61wgfs2h6ilaqi6iq89f1pd1yaf65l87bssyl4ylb";
|
2017-05-30 06:48:06 -07:00
|
|
|
};
|
2016-08-24 02:56:02 -07:00
|
|
|
|
2016-07-10 13:45:58 -07:00
|
|
|
patches = [
|
2017-08-05 07:38:48 -07:00
|
|
|
./patches/0001-Disable-fragile-tests-libstd-net-tcp-on-Darwin-Linux.patch
|
2017-12-02 04:46:33 -08:00
|
|
|
] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch
|
|
|
|
# https://github.com/rust-lang/rust/issues/45410
|
|
|
|
++ stdenv.lib.optional stdenv.isAarch64 ./patches/aarch64-disable-test_loading_cosine.patch;
|
2016-08-24 02:56:02 -07:00
|
|
|
|
2016-06-14 03:49:48 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
cargo = callPackage ./cargo.nix rec {
|
2017-11-30 06:33:48 -08:00
|
|
|
version = "0.23.0";
|
|
|
|
srcSha = "14b2n1msxma19ydchj54hd7f2zdsr524fg133dkmdn7j65f1x6aj";
|
2018-01-09 06:03:03 -08:00
|
|
|
cargoSha256 = "1sj59z0w172qvjwg1ma5fr5am9dgw27086xwdnrvlrk4hffcr7y7";
|
2016-08-08 06:55:26 -07:00
|
|
|
|
2018-02-19 12:26:54 -08:00
|
|
|
inherit stdenv;
|
2016-06-14 03:49:48 -07:00
|
|
|
inherit rustc; # the rustc that will be wrapped by cargo
|
|
|
|
inherit rustPlatform; # used to build cargo
|
|
|
|
};
|
|
|
|
}
|