2021-01-22 18:25:31 +07:00
|
|
|
{ lib, stdenv, makeWrapper, bash, curl, darwin, zlib
|
2021-10-17 12:28:08 +02:00
|
|
|
, autoPatchelfHook, gcc
|
2017-05-30 20:48:06 +07:00
|
|
|
, version
|
|
|
|
, src
|
|
|
|
, platform
|
|
|
|
, versionType
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2021-01-22 18:25:31 +07:00
|
|
|
inherit (lib) optionalString;
|
2017-11-01 15:37:04 +01:00
|
|
|
inherit (darwin.apple_sdk.frameworks) Security;
|
2017-05-30 20:48:06 +07:00
|
|
|
|
|
|
|
bootstrapping = versionType == "bootstrap";
|
|
|
|
|
|
|
|
installComponents
|
|
|
|
= "rustc,rust-std-${platform}"
|
2018-06-05 21:54:27 +02:00
|
|
|
+ (optionalString bootstrapping ",cargo")
|
2017-05-30 20:48:06 +07:00
|
|
|
;
|
|
|
|
in
|
|
|
|
|
|
|
|
rec {
|
2019-08-13 21:52:01 +00:00
|
|
|
rustc = stdenv.mkDerivation {
|
2022-03-01 11:53:13 +01:00
|
|
|
pname = "rustc-${versionType}";
|
2017-05-30 20:48:06 +07:00
|
|
|
|
|
|
|
inherit version;
|
|
|
|
inherit src;
|
|
|
|
|
2021-01-22 18:25:31 +07:00
|
|
|
meta = with lib; {
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "http://www.rust-lang.org/";
|
2017-05-30 20:48:06 +07:00
|
|
|
description = "A safe, concurrent, practical language";
|
|
|
|
maintainers = with maintainers; [ qknight ];
|
|
|
|
license = [ licenses.mit licenses.asl20 ];
|
|
|
|
};
|
|
|
|
|
2021-10-17 12:28:08 +02:00
|
|
|
nativeBuildInputs = lib.optional (!stdenv.isDarwin) autoPatchelfHook;
|
2019-06-28 20:42:12 +02:00
|
|
|
buildInputs = [ bash ]
|
2021-10-17 12:28:08 +02:00
|
|
|
++ lib.optionals (!stdenv.isDarwin) [ gcc.cc.lib zlib ]
|
2021-01-22 18:25:31 +07:00
|
|
|
++ lib.optional stdenv.isDarwin Security;
|
2017-05-30 20:48:06 +07:00
|
|
|
|
2018-02-20 09:59:26 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
2017-10-31 07:37:15 +01:00
|
|
|
|
2017-05-30 20:48:06 +07:00
|
|
|
installPhase = ''
|
|
|
|
./install.sh --prefix=$out \
|
|
|
|
--components=${installComponents}
|
|
|
|
|
|
|
|
# Do NOT, I repeat, DO NOT use `wrapProgram` on $out/bin/rustc
|
|
|
|
# (or similar) here. It causes strange effects where rustc loads
|
|
|
|
# the wrong libraries in a bootstrap-build causing failures that
|
2018-06-12 19:01:24 -04:00
|
|
|
# are very hard to track down. For details, see
|
2017-05-30 20:48:06 +07:00
|
|
|
# https://github.com/rust-lang/rust/issues/34722#issuecomment-232164943
|
|
|
|
'';
|
2019-08-15 17:50:28 +02:00
|
|
|
|
2022-10-19 22:51:27 +02:00
|
|
|
# The strip tool in cctools 973.0.1 and up appears to break rlibs in the
|
|
|
|
# binaries. The lib.rmeta object inside the ar archive should contain an
|
|
|
|
# .rmeta section, but it is removed. Luckily, this doesn't appear to be an
|
|
|
|
# issue for Rust builds produced by Nix.
|
|
|
|
dontStrip = stdenv.isDarwin;
|
|
|
|
|
2019-08-15 17:50:28 +02:00
|
|
|
setupHooks = ./setup-hook.sh;
|
2017-05-30 20:48:06 +07:00
|
|
|
};
|
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
cargo = stdenv.mkDerivation {
|
2022-03-01 11:53:13 +01:00
|
|
|
pname = "cargo-${versionType}";
|
2017-05-30 20:48:06 +07:00
|
|
|
|
|
|
|
inherit version;
|
|
|
|
inherit src;
|
|
|
|
|
2021-01-22 18:25:31 +07:00
|
|
|
meta = with lib; {
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "http://www.rust-lang.org/";
|
2017-05-30 20:48:06 +07:00
|
|
|
description = "A safe, concurrent, practical language";
|
|
|
|
maintainers = with maintainers; [ qknight ];
|
|
|
|
license = [ licenses.mit licenses.asl20 ];
|
|
|
|
};
|
|
|
|
|
2021-10-17 12:28:08 +02:00
|
|
|
nativeBuildInputs = [ makeWrapper ]
|
|
|
|
++ lib.optional (!stdenv.isDarwin) autoPatchelfHook;
|
|
|
|
buildInputs = [ bash ]
|
|
|
|
++ lib.optional (!stdenv.isDarwin) gcc.cc.lib
|
|
|
|
++ lib.optional stdenv.isDarwin Security;
|
2017-11-01 15:37:04 +01:00
|
|
|
|
2018-02-20 09:59:26 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
2017-05-30 20:48:06 +07:00
|
|
|
|
|
|
|
installPhase = ''
|
2018-02-03 13:57:57 +02:00
|
|
|
patchShebangs ./install.sh
|
2017-05-30 20:48:06 +07:00
|
|
|
./install.sh --prefix=$out \
|
|
|
|
--components=cargo
|
|
|
|
|
|
|
|
wrapProgram "$out/bin/cargo" \
|
|
|
|
--suffix PATH : "${rustc}/bin"
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|