cargo: inherit passthru.tests from rustc

This commit is contained in:
zowoq 2022-08-23 11:10:09 +10:00
parent 9c26b06a5d
commit 45ad335d5d

View file

@ -12,7 +12,10 @@ rustPlatform.buildRustPackage {
cargoVendorDir = "vendor";
buildAndTestSubdir = "src/tools/cargo";
passthru.rustc = rustc;
passthru = {
rustc = rustc;
inherit (rustc) tests;
};
# changes hash of vendor directory otherwise
dontUpdateAutotoolsGnuConfigScripts = true;