2017-05-30 15:48:06 +02:00
|
|
|
{ stdenv, callPackage, recurseIntoAttrs, makeRustPlatform, llvm, fetchurl
|
2018-03-08 02:52:09 +01:00
|
|
|
, fetchpatch
|
2017-03-25 00:59:14 +01:00
|
|
|
, targets ? []
|
|
|
|
, targetToolchains ? []
|
|
|
|
, targetPatches ? []
|
|
|
|
}:
|
2016-06-14 12:49:48 +02:00
|
|
|
|
|
|
|
let
|
2016-07-09 09:01:49 +02:00
|
|
|
rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {}));
|
2018-04-06 17:05:40 +02:00
|
|
|
version = "1.25.0";
|
|
|
|
cargoVersion = "0.26.0";
|
2018-02-20 10:59:26 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz";
|
2018-04-06 17:05:40 +02:00
|
|
|
sha256 = "0baxjr99311lvwdq0s38bipbnj72pn6fgbk6lcq7j555xq53mxpf";
|
2018-02-20 10:59:26 +01:00
|
|
|
};
|
|
|
|
in rec {
|
2016-06-14 12:49:48 +02:00
|
|
|
rustc = callPackage ./rustc.nix {
|
2018-02-20 20:33:17 +01:00
|
|
|
inherit stdenv llvm targets targetPatches targetToolchains rustPlatform version src;
|
2017-05-30 15:48:06 +02:00
|
|
|
|
2017-10-04 18:41:16 +02:00
|
|
|
forceBundledLLVM = true;
|
|
|
|
|
2016-06-14 12:49:48 +02:00
|
|
|
configureFlags = [ "--release-channel=stable" ];
|
2017-05-30 15:48:06 +02:00
|
|
|
|
2016-07-10 22:45:58 +02:00
|
|
|
patches = [
|
2017-08-05 16:38:48 +02:00
|
|
|
./patches/0001-Disable-fragile-tests-libstd-net-tcp-on-Darwin-Linux.patch
|
2018-03-08 02:52:09 +01:00
|
|
|
# Adapted from https://github.com/rust-lang/rust/pull/47912
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://src.fedoraproject.org/rpms/rust/raw/1bb4d24c060915c304c9a9f86a438388e599f9c6/f/0002-Use-a-range-to-identify-SIGSEGV-in-stack-guards.patch";
|
|
|
|
sha256 = "16hc170qzzcb9lcabk0ln005zji2h1gq0knbr9avbbzlbg9jha2q";
|
|
|
|
})
|
2017-12-02 13:46:33 +01: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 11:56:02 +02:00
|
|
|
|
2016-06-14 12:49:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
cargo = callPackage ./cargo.nix rec {
|
2018-02-20 10:59:26 +01:00
|
|
|
version = cargoVersion;
|
|
|
|
inherit src;
|
2018-02-19 21:26:54 +01:00
|
|
|
inherit stdenv;
|
2016-06-14 12:49:48 +02:00
|
|
|
inherit rustc; # the rustc that will be wrapped by cargo
|
|
|
|
inherit rustPlatform; # used to build cargo
|
|
|
|
};
|
|
|
|
}
|