mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
, makeWrapper
|
|
, valgrind
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-valgrind";
|
|
version = "1.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jfrimmel";
|
|
repo = "cargo-valgrind";
|
|
# repo lacks the 1.3.0 tag
|
|
# https://github.com/jfrimmel/cargo-valgrind/issues/33
|
|
rev = "d47dd810e3971d676cde5757df8b2e05ed563e41";
|
|
sha256 = "163ch5bpwny1di758rpfib1ddqclxm48j0lmmv741ji3l4nqid32";
|
|
};
|
|
|
|
cargoSha256 = "008s1y3pkn8613kp1gqf494fs93ix0nrwhrkqi5q9bim2mixgccb";
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script {
|
|
attrPath = pname;
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/cargo-valgrind --prefix PATH : ${lib.makeBinPath [ valgrind ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = ''Cargo subcommand "valgrind": runs valgrind and collects its output in a helpful manner'';
|
|
homepage = "https://github.com/jfrimmel/cargo-valgrind";
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
|
maintainers = with maintainers; [ otavio ];
|
|
};
|
|
}
|