Merge pull request #112500 from danieldk/cargo-setup-hook

This commit is contained in:
Jörg Thalheim
2021-02-11 09:41:40 +00:00
committed by GitHub
8 changed files with 269 additions and 113 deletions
@@ -12,7 +12,7 @@ rec {
};
buildRustPackage = callPackage ../../../build-support/rust {
inherit rustc cargo fetchCargoTarball;
inherit rustc cargo cargoSetupHook fetchCargoTarball;
};
rustcSrc = callPackage ./rust-src.nix {
@@ -22,4 +22,7 @@ rec {
rustLibSrc = callPackage ./rust-lib-src.nix {
inherit rustc;
};
# Hooks
inherit (callPackage ../../../build-support/rust/hooks { }) cargoSetupHook;
}