2022-03-10 19:12:11 +00:00
|
|
|
{ buildPackages, callPackage, stdenv, runCommand }@prev:
|
2020-10-16 20:44:37 +00:00
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
{ rustc, cargo, stdenv ? prev.stdenv, ... }:
|
2020-10-16 20:44:37 +00:00
|
|
|
|
|
|
|
rec {
|
|
|
|
rust = {
|
|
|
|
inherit rustc cargo;
|
|
|
|
};
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
fetchCargoTarball = buildPackages.callPackage ../../../build-support/rust/fetch-cargo-tarball {
|
2021-06-28 23:13:55 +00:00
|
|
|
git = buildPackages.gitMinimal;
|
2021-12-06 16:07:01 +00:00
|
|
|
inherit cargo;
|
2020-10-16 20:44:37 +00:00
|
|
|
};
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
buildRustPackage = callPackage ../../../build-support/rust/build-rust-package {
|
2021-06-28 23:13:55 +00:00
|
|
|
git = buildPackages.gitMinimal;
|
2022-12-17 10:02:37 +00:00
|
|
|
inherit stdenv cargoBuildHook cargoCheckHook cargoInstallHook cargoNextestHook cargoSetupHook
|
2021-05-29 03:34:57 +00:00
|
|
|
fetchCargoTarball importCargoLock rustc;
|
2020-10-16 20:44:37 +00:00
|
|
|
};
|
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
importCargoLock = buildPackages.callPackage ../../../build-support/rust/import-cargo-lock.nix { inherit cargo; };
|
2021-05-29 03:34:57 +00:00
|
|
|
|
2020-10-16 20:44:37 +00:00
|
|
|
rustcSrc = callPackage ./rust-src.nix {
|
2022-03-10 19:12:11 +00:00
|
|
|
inherit runCommand rustc;
|
2020-10-16 20:44:37 +00:00
|
|
|
};
|
2020-11-09 15:59:12 +00:00
|
|
|
|
|
|
|
rustLibSrc = callPackage ./rust-lib-src.nix {
|
2022-03-10 19:12:11 +00:00
|
|
|
inherit runCommand rustc;
|
2020-11-09 15:59:12 +00:00
|
|
|
};
|
2021-03-09 03:18:52 +00:00
|
|
|
|
|
|
|
# Hooks
|
|
|
|
inherit (callPackage ../../../build-support/rust/hooks {
|
2021-10-28 06:52:43 +00:00
|
|
|
inherit stdenv cargo rustc;
|
2022-12-17 10:02:37 +00:00
|
|
|
}) cargoBuildHook cargoCheckHook cargoInstallHook cargoNextestHook cargoSetupHook maturinBuildHook bindgenHook;
|
2020-10-16 20:44:37 +00:00
|
|
|
}
|