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 {}));
|
2018-06-05 12:54:27 -07:00
|
|
|
version = "1.26.2";
|
|
|
|
cargoVersion = "1.26.2";
|
2018-02-20 01:59:26 -08:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz";
|
2018-06-05 12:54:27 -07:00
|
|
|
sha256 = "0047ais0fvmqvngqkdsxgrzhb0kljg8wy85b01kbbjc88hqcz7pv";
|
2018-02-20 01:59:26 -08:00
|
|
|
};
|
|
|
|
in rec {
|
2016-06-14 03:49:48 -07:00
|
|
|
rustc = callPackage ./rustc.nix {
|
2018-02-20 11:33:17 -08:00
|
|
|
inherit stdenv llvm targets targetPatches targetToolchains rustPlatform version src;
|
2017-05-30 06:48:06 -07:00
|
|
|
|
2018-06-04 13:08:41 -07:00
|
|
|
patches = [ ./patches/net-tcp-disable-tests.patch ./patches/stdsimd-disable-doctest.patch ];
|
2018-05-11 07:37:29 -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
|
|
|
|
2018-04-21 10:50:58 -07:00
|
|
|
# 1. Upstream is not running tests on aarch64:
|
2018-04-16 04:28:04 -07:00
|
|
|
# see https://github.com/rust-lang/rust/issues/49807#issuecomment-380860567
|
|
|
|
# So we do the same.
|
2018-04-21 10:50:58 -07:00
|
|
|
# 2. Tests run out of memory for i686
|
|
|
|
doCheck = !stdenv.isAarch64 && !stdenv.isi686;
|
2016-06-14 03:49:48 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
cargo = callPackage ./cargo.nix rec {
|
2018-02-20 01:59:26 -08:00
|
|
|
version = cargoVersion;
|
|
|
|
inherit src;
|
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
|
|
|
|
};
|
|
|
|
}
|