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 {}));
|
2017-11-03 06:29:20 +00:00
|
|
|
version = "1.21.0";
|
2016-06-14 11:49:48 +01:00
|
|
|
in
|
|
|
|
rec {
|
|
|
|
rustc = callPackage ./rustc.nix {
|
2017-05-30 14:48:06 +01:00
|
|
|
inherit llvm targets targetPatches targetToolchains rustPlatform version;
|
|
|
|
|
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
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz";
|
2017-11-03 06:29:20 +00:00
|
|
|
sha256 = "1yj8lnxybjrybp00fqhxw8fpr641dh8wcn9mk44xjnsb4i1c21qp";
|
2017-05-30 14:48:06 +01:00
|
|
|
};
|
2016-08-24 10:56:02 +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
|
2016-07-10 21:45:58 +01:00
|
|
|
] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
|
2016-08-24 10:56:02 +01:00
|
|
|
|
2016-06-14 11:49:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
cargo = callPackage ./cargo.nix rec {
|
2017-10-19 23:29:28 +01:00
|
|
|
version = "0.22.0";
|
|
|
|
srcSha = "0x9pm73hkkd1hq4qrmz8iv91djgpdsxzwll7jari0h77vpwajmw4";
|
|
|
|
cargoSha256 = "0xd0rb8gcqy6xngsx9l30jg3fqrcwccgv904ksqs9c4d44hga0gd";
|
2016-08-08 14:55:26 +01:00
|
|
|
|
2016-06-14 11:49:48 +01:00
|
|
|
inherit rustc; # the rustc that will be wrapped by cargo
|
|
|
|
inherit rustPlatform; # used to build cargo
|
|
|
|
};
|
|
|
|
}
|