2017-05-30 14:48:06 +01:00
|
|
|
{ stdenv, callPackage, recurseIntoAttrs, makeRustPlatform, llvm, fetchurl
|
2017-03-24 23:59:14 +00:00
|
|
|
, targets ? []
|
|
|
|
, targetToolchains ? []
|
|
|
|
, targetPatches ? []
|
|
|
|
}:
|
2016-06-14 11:49:48 +01:00
|
|
|
|
|
|
|
let
|
2016-07-09 08:01:49 +01:00
|
|
|
rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {}));
|
2018-02-20 09:59:26 +00:00
|
|
|
version = "1.24.0";
|
|
|
|
cargoVersion = "0.24.0";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz";
|
|
|
|
sha256 = "17v3jpyky8vkkgai5yd2zr8zl87qpgj6dx99gx27x1sf0kv7d0mv";
|
|
|
|
};
|
|
|
|
in rec {
|
2016-06-14 11:49:48 +01:00
|
|
|
rustc = callPackage ./rustc.nix {
|
2018-02-20 19:33:17 +00:00
|
|
|
inherit stdenv llvm targets targetPatches targetToolchains rustPlatform version src;
|
2017-05-30 14:48:06 +01:00
|
|
|
|
2017-10-04 17:41:16 +01:00
|
|
|
forceBundledLLVM = true;
|
|
|
|
|
2016-06-14 11:49:48 +01:00
|
|
|
configureFlags = [ "--release-channel=stable" ];
|
2017-05-30 14:48:06 +01:00
|
|
|
|
2016-07-10 21:45:58 +01:00
|
|
|
patches = [
|
2017-08-05 15:38:48 +01:00
|
|
|
./patches/0001-Disable-fragile-tests-libstd-net-tcp-on-Darwin-Linux.patch
|
2017-12-02 12:46:33 +00: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 10:56:02 +01:00
|
|
|
|
2016-06-14 11:49:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
cargo = callPackage ./cargo.nix rec {
|
2018-02-20 09:59:26 +00:00
|
|
|
version = cargoVersion;
|
|
|
|
inherit src;
|
2018-02-19 20:26:54 +00:00
|
|
|
inherit stdenv;
|
2016-06-14 11:49:48 +01:00
|
|
|
inherit rustc; # the rustc that will be wrapped by cargo
|
|
|
|
inherit rustPlatform; # used to build cargo
|
|
|
|
};
|
|
|
|
}
|