cargo-valgrind: use finalAttrs

This commit is contained in:
Christoph Jabs
2026-02-05 09:20:24 +02:00
parent d37f2a1961
commit 6a8d682e25
+3 -3
View File
@@ -6,14 +6,14 @@
makeWrapper,
valgrind,
}:
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "cargo-valgrind";
version = "2.4.0";
src = fetchFromGitHub {
owner = "jfrimmel";
repo = "cargo-valgrind";
tag = version;
tag = finalAttrs.version;
sha256 = "sha256-sVW3zNe0a9iQQ0vRWJofqG4gwUJ/w0U4ugVyMNtWX98=";
};
@@ -52,4 +52,4 @@ rustPlatform.buildRustPackage rec {
chrjabs
];
};
}
})