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-05-30 14:48:06 +01:00
|
|
|
version = "1.17.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;
|
|
|
|
|
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";
|
|
|
|
sha256 = "4baba3895b75f2492df6ce5a28a916307ecd1c088dc1fd02dbfa8a8e86174f87";
|
|
|
|
};
|
2016-08-24 10:56:02 +01:00
|
|
|
|
2016-07-10 21:45:58 +01:00
|
|
|
patches = [
|
2017-01-08 09:31:34 +00:00
|
|
|
./patches/darwin-disable-fragile-tcp-tests.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-05-30 14:48:06 +01:00
|
|
|
version = "0.18.0";
|
|
|
|
srcRev = "fe7b0cdcf5ca7aab81630706ce40b70f6aa2e666";
|
|
|
|
srcSha = "164iywv1l3v87b0pznf5kkzxigd6w19myv9d7ka4c65zgrk9n9px";
|
|
|
|
depsSha256 = "1mrgd8ib48vxxbhkvsqqq4p19sc6b74x3cd8p6lhhlm6plrajrvm";
|
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
|
|
|
|
};
|
|
|
|
}
|