2017-05-30 14:48:06 +01:00
|
|
|
{ stdenv, callPackage, recurseIntoAttrs, makeRustPlatform, llvm, fetchurl
|
2018-10-26 16:06:56 +01:00
|
|
|
, CoreFoundation, Security
|
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 {}));
|
2019-01-19 14:47:18 +00:00
|
|
|
version = "1.32.0";
|
|
|
|
cargoVersion = "1.32.0";
|
2018-02-20 09:59:26 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz";
|
2019-01-19 14:47:18 +00:00
|
|
|
sha256 = "0ji2l9xv53y27xy72qagggvq47gayr5lcv2jwvmfirx029vlqnac";
|
2018-02-20 09:59:26 +00:00
|
|
|
};
|
|
|
|
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
|
|
|
|
2018-06-08 07:57:16 +01:00
|
|
|
patches = [
|
|
|
|
./patches/net-tcp-disable-tests.patch
|
2018-06-21 22:44:31 +01:00
|
|
|
|
|
|
|
# Re-evaluate if this we need to disable this one
|
|
|
|
#./patches/stdsimd-disable-doctest.patch
|
2018-06-08 07:57:16 +01:00
|
|
|
];
|
2018-05-11 15:37:29 +01:00
|
|
|
|
2018-10-30 13:56:23 +00:00
|
|
|
withBundledLLVM = false;
|
2017-10-04 17:41:16 +01:00
|
|
|
|
2016-06-14 11:49:48 +01:00
|
|
|
configureFlags = [ "--release-channel=stable" ];
|
2017-05-30 14:48:06 +01:00
|
|
|
|
2018-04-21 18:50:58 +01:00
|
|
|
# 1. Upstream is not running tests on aarch64:
|
2018-04-16 12:28:04 +01:00
|
|
|
# see https://github.com/rust-lang/rust/issues/49807#issuecomment-380860567
|
|
|
|
# So we do the same.
|
2018-04-21 18:50:58 +01:00
|
|
|
# 2. Tests run out of memory for i686
|
2018-07-09 11:35:01 +01:00
|
|
|
#doCheck = !stdenv.isAarch64 && !stdenv.isi686;
|
|
|
|
|
|
|
|
# Disabled for now; see https://github.com/NixOS/nixpkgs/pull/42348#issuecomment-402115598.
|
|
|
|
doCheck = false;
|
2016-06-14 11:49:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
cargo = callPackage ./cargo.nix rec {
|
2018-02-20 09:59:26 +00:00
|
|
|
version = cargoVersion;
|
2018-10-26 16:06:56 +01:00
|
|
|
inherit src stdenv CoreFoundation Security;
|
2016-06-14 11:49:48 +01:00
|
|
|
inherit rustc; # the rustc that will be wrapped by cargo
|
|
|
|
inherit rustPlatform; # used to build cargo
|
|
|
|
};
|
|
|
|
}
|