Files
nixpkgs/pkgs/development/compilers/rust/default.nix
T

38 lines
1.1 KiB
Nix
Raw Normal View History

2017-05-30 20:48:06 +07:00
{ stdenv, callPackage, recurseIntoAttrs, makeRustPlatform, llvm, fetchurl
2017-03-25 00:59:14 +01:00
, targets ? []
, targetToolchains ? []
, targetPatches ? []
}:
let
2016-07-09 00:01:49 -07:00
rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {}));
2017-05-30 20:48:06 +07:00
version = "1.17.0";
in
rec {
rustc = callPackage ./rustc.nix {
2017-05-30 20:48:06 +07:00
inherit llvm targets targetPatches targetToolchains rustPlatform version;
configureFlags = [ "--release-channel=stable" ];
2017-05-30 20:48:06 +07:00
src = fetchurl {
url = "https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz";
sha256 = "4baba3895b75f2492df6ce5a28a916307ecd1c088dc1fd02dbfa8a8e86174f87";
};
patches = [
2017-01-08 10:31:34 +01:00
./patches/darwin-disable-fragile-tcp-tests.patch
] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
};
cargo = callPackage ./cargo.nix rec {
2017-05-30 20:48:06 +07:00
version = "0.18.0";
srcRev = "fe7b0cdcf5ca7aab81630706ce40b70f6aa2e666";
srcSha = "164iywv1l3v87b0pznf5kkzxigd6w19myv9d7ka4c65zgrk9n9px";
depsSha256 = "1mrgd8ib48vxxbhkvsqqq4p19sc6b74x3cd8p6lhhlm6plrajrvm";
2016-08-08 15:55:26 +02:00
inherit rustc; # the rustc that will be wrapped by cargo
inherit rustPlatform; # used to build cargo
};
}