Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
makeWrapper,
|
|
valgrind,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-valgrind";
|
|
version = "2.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jfrimmel";
|
|
repo = "cargo-valgrind";
|
|
tag = version;
|
|
sha256 = "sha256-oLnvDie6PUW5MVEMIcqfmwNkkfz25l+NABSKih4eSpI=";
|
|
};
|
|
|
|
cargoHash = "sha256-L927ViGgb5LchJRMd6cBks6K41xOYLNI1Q2kTKdYBgg=";
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
valgrind # for tests where the executable is not wrapped yet
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/cargo-valgrind --prefix PATH : ${lib.makeBinPath [ valgrind ]}
|
|
'';
|
|
|
|
checkFlags = [
|
|
"--skip tests_are_runnable"
|
|
"--skip default_cargo_project_reports_no_violations"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = ''Cargo subcommand "valgrind": runs valgrind and collects its output in a helpful manner'';
|
|
mainProgram = "cargo-valgrind";
|
|
homepage = "https://github.com/jfrimmel/cargo-valgrind";
|
|
license = with licenses; [
|
|
asl20 # or
|
|
mit
|
|
];
|
|
maintainers = with maintainers; [
|
|
otavio
|
|
matthiasbeyer
|
|
];
|
|
};
|
|
}
|