mirror of
https://github.com/ipetkov/crane.git
synced 2024-11-23 08:22:41 +03:00
25 lines
658 B
Nix
25 lines
658 B
Nix
{ mkCargoDerivation
|
|
, cargo-tarpaulin
|
|
}:
|
|
|
|
{ cargoExtraArgs ? ""
|
|
, cargoTarpaulinExtraArgs ? "--skip-clean --out Xml --output-dir $out"
|
|
, ...
|
|
}@origArgs:
|
|
let
|
|
args = builtins.removeAttrs origArgs [
|
|
"cargoExtraArgs"
|
|
"cargoTarpaulinExtraArgs"
|
|
];
|
|
in
|
|
mkCargoDerivation (args // {
|
|
buildPhaseCargoCommand = "cargoWithProfile tarpaulin ${cargoExtraArgs} ${cargoTarpaulinExtraArgs}";
|
|
|
|
pnameSuffix = "-tarpaulin";
|
|
|
|
# With `--skip-clean` cargo-tarpaulin tries to mutate dependency files in place
|
|
doNotLinkInheritedArtifacts = args.doNotLinkInheritedArtifacts or true;
|
|
|
|
nativeBuildInputs = (args.nativeBuildInputs or [ ]) ++ [ cargo-tarpaulin ];
|
|
})
|