2017-05-30 15:48:06 +02:00
|
|
|
{ stdenv, callPackage, recurseIntoAttrs, makeRustPlatform, llvm, fetchurl
|
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-09-30 12:56:02 +02:00
|
|
|
version = "1.29.1";
|
|
|
|
cargoVersion = "1.29.1";
|
2018-02-20 10:59:26 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz";
|
2018-09-30 12:56:02 +02:00
|
|
|
sha256 = "0jd3c57x3yndizns4pb68nh25si47agfmrdvf9nwwsyfcs5p5c7i";
|
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
|
|
|
|
2018-06-08 08:57:16 +02:00
|
|
|
patches = [
|
|
|
|
./patches/net-tcp-disable-tests.patch
|
2018-06-21 23:44:31 +02:00
|
|
|
|
|
|
|
# Re-evaluate if this we need to disable this one
|
|
|
|
#./patches/stdsimd-disable-doctest.patch
|
|
|
|
|
2018-06-08 08:57:16 +02:00
|
|
|
# Fails on hydra - not locally; the exact reason is unknown.
|
|
|
|
# Comments in the test suggest that some non-reproducible environment
|
|
|
|
# variables such $RANDOM can make it fail.
|
|
|
|
./patches/disable-test-inherit-env.patch
|
|
|
|
];
|
2018-05-11 16:37:29 +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
|
|
|
|
2018-04-21 19:50:58 +02:00
|
|
|
# 1. Upstream is not running tests on aarch64:
|
2018-04-16 13:28:04 +02:00
|
|
|
# see https://github.com/rust-lang/rust/issues/49807#issuecomment-380860567
|
|
|
|
# So we do the same.
|
2018-04-21 19:50:58 +02:00
|
|
|
# 2. Tests run out of memory for i686
|
2018-07-09 12:35:01 +02:00
|
|
|
#doCheck = !stdenv.isAarch64 && !stdenv.isi686;
|
|
|
|
|
|
|
|
# Disabled for now; see https://github.com/NixOS/nixpkgs/pull/42348#issuecomment-402115598.
|
|
|
|
doCheck = false;
|
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
|
|
|
|
};
|
|
|
|
}
|