rustPlatform: make it possible to override the profile for cargo test

This commit is contained in:
Maximilian Bosch
2020-05-13 01:15:23 +02:00
parent 5eaabaf089
commit 736462d995

View File

@@ -28,6 +28,7 @@
, meta ? {}
, target ? null
, cargoVendorDir ? null
, checkType ? buildType
, ... } @ args:
assert cargoVendorDir == null -> cargoSha256 != "unset";
@@ -191,7 +192,7 @@ stdenv.mkDerivation (args // {
'';
checkPhase = args.checkPhase or (let
argstr = "${stdenv.lib.optionalString (buildType == "release") "--release"} --target ${rustTarget} --frozen";
argstr = "${stdenv.lib.optionalString (checkType == "release") "--release"} --target ${rustTarget} --frozen";
in ''
runHook preCheck
echo "Running cargo test ${argstr} -- ''${checkFlags} ''${checkFlagsArray+''${checkFlagsArray[@]}}"