2021-01-22 11:25:31 +00:00
|
|
|
{ lib, stdenv, makeWrapper, bash, curl, darwin, zlib
|
2017-05-30 14:48:06 +01:00
|
|
|
, version
|
|
|
|
, src
|
|
|
|
, platform
|
|
|
|
, versionType
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2021-01-22 11:25:31 +00:00
|
|
|
inherit (lib) optionalString;
|
2017-11-01 14:37:04 +00:00
|
|
|
inherit (darwin.apple_sdk.frameworks) Security;
|
2017-05-30 14:48:06 +01:00
|
|
|
|
|
|
|
bootstrapping = versionType == "bootstrap";
|
|
|
|
|
|
|
|
installComponents
|
|
|
|
= "rustc,rust-std-${platform}"
|
2018-06-05 20:54:27 +01:00
|
|
|
+ (optionalString bootstrapping ",cargo")
|
2017-05-30 14:48:06 +01:00
|
|
|
;
|
|
|
|
in
|
|
|
|
|
|
|
|
rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
rustc = stdenv.mkDerivation {
|
2017-05-30 14:48:06 +01:00
|
|
|
name = "rustc-${versionType}-${version}";
|
|
|
|
|
|
|
|
inherit version;
|
|
|
|
inherit src;
|
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.rust-lang.org/";
|
2017-05-30 14:48:06 +01:00
|
|
|
description = "A safe, concurrent, practical language";
|
|
|
|
maintainers = with maintainers; [ qknight ];
|
|
|
|
license = [ licenses.mit licenses.asl20 ];
|
|
|
|
};
|
|
|
|
|
2019-06-28 19:42:12 +01:00
|
|
|
buildInputs = [ bash ]
|
2021-01-22 11:25:31 +00:00
|
|
|
++ lib.optional stdenv.isDarwin Security;
|
2017-05-30 14:48:06 +01:00
|
|
|
|
2018-02-20 09:59:26 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
2017-10-31 06:37:15 +00:00
|
|
|
|
2017-05-30 14:48:06 +01:00
|
|
|
installPhase = ''
|
|
|
|
./install.sh --prefix=$out \
|
|
|
|
--components=${installComponents}
|
|
|
|
|
2020-10-25 21:17:24 +00:00
|
|
|
${optionalString (stdenv.isLinux && bootstrapping) (''
|
2017-05-30 14:48:06 +01:00
|
|
|
patchelf \
|
|
|
|
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
|
2017-11-01 14:37:04 +00:00
|
|
|
"$out/bin/rustc"
|
2021-01-22 11:25:31 +00:00
|
|
|
'' + optionalString (lib.versionAtLeast version "1.46")
|
2020-10-25 21:17:24 +00:00
|
|
|
# rustc bootstrap needs libz starting from 1.46
|
|
|
|
''
|
|
|
|
ln -s ${zlib}/lib/libz.so.1 $out/lib/libz.so.1
|
|
|
|
ln -s ${zlib}/lib/libz.so $out/lib/libz.so
|
|
|
|
'' + ''
|
2017-05-30 14:48:06 +01:00
|
|
|
patchelf \
|
|
|
|
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
|
2017-11-01 14:37:04 +00:00
|
|
|
"$out/bin/rustdoc"
|
2017-12-28 19:42:23 +00:00
|
|
|
patchelf \
|
|
|
|
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
|
|
|
|
"$out/bin/cargo"
|
2020-10-25 21:17:24 +00:00
|
|
|
'')}
|
2017-12-28 19:42:23 +00:00
|
|
|
|
2017-05-30 14:48:06 +01:00
|
|
|
# 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-13 00:01:24 +01:00
|
|
|
# are very hard to track down. For details, see
|
2017-05-30 14:48:06 +01:00
|
|
|
# https://github.com/rust-lang/rust/issues/34722#issuecomment-232164943
|
|
|
|
'';
|
2019-08-15 16:50:28 +01:00
|
|
|
|
|
|
|
setupHooks = ./setup-hook.sh;
|
2017-05-30 14:48:06 +01:00
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
cargo = stdenv.mkDerivation {
|
2017-05-30 14:48:06 +01:00
|
|
|
name = "cargo-${versionType}-${version}";
|
|
|
|
|
|
|
|
inherit version;
|
|
|
|
inherit src;
|
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.rust-lang.org/";
|
2017-05-30 14:48:06 +01:00
|
|
|
description = "A safe, concurrent, practical language";
|
|
|
|
maintainers = with maintainers; [ qknight ];
|
|
|
|
license = [ licenses.mit licenses.asl20 ];
|
|
|
|
};
|
|
|
|
|
2021-02-07 09:17:39 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ bash ] ++ lib.optional stdenv.isDarwin Security;
|
2017-11-01 14:37:04 +00:00
|
|
|
|
2018-02-20 09:59:26 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
2017-05-30 14:48:06 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
2018-02-03 11:57:57 +00:00
|
|
|
patchShebangs ./install.sh
|
2017-05-30 14:48:06 +01:00
|
|
|
./install.sh --prefix=$out \
|
|
|
|
--components=cargo
|
|
|
|
|
2017-12-28 19:42:23 +00:00
|
|
|
${optionalString (stdenv.isLinux && bootstrapping) ''
|
|
|
|
patchelf \
|
|
|
|
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
|
|
|
|
"$out/bin/cargo"
|
|
|
|
''}
|
|
|
|
|
2017-05-30 14:48:06 +01:00
|
|
|
wrapProgram "$out/bin/cargo" \
|
|
|
|
--suffix PATH : "${rustc}/bin"
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|