File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
pkgs/by-name/ca/cargo-valgrind Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 66 makeWrapper ,
77 valgrind ,
88} :
9-
109rustPlatform . buildRustPackage rec {
1110 pname = "cargo-valgrind" ;
12- version = "2.2 .1" ;
11+ version = "2.3 .1" ;
1312
1413 src = fetchFromGitHub {
1514 owner = "jfrimmel" ;
1615 repo = "cargo-valgrind" ;
1716 tag = version ;
18- sha256 = "sha256-yUCDKklkfK+2n+THH4QlHb+FpeWfObXpmp4VozsFiUM =" ;
17+ sha256 = "sha256-gr/s2dYCFmhwfXT3tqWPFpXQK2QaAhL7Aqnn1A3KjJI =" ;
1918 } ;
2019
2120 useFetchCargoVendor = true ;
22- cargoHash = "sha256-nTqdsi+5YmOzQ5DPn3jOfUXUUut9uo5xKyx/R2MjV1A =" ;
21+ cargoHash = "sha256-iNsGrbncZwCHXn/xuiI4Mw4F3FFWswEhwpIMI0xcFgU =" ;
2322
2423 passthru = {
2524 updateScript = nix-update-script { } ;
2625 } ;
2726
28- nativeBuildInputs = [ makeWrapper ] ;
27+ nativeBuildInputs = [
28+ makeWrapper
29+ valgrind # for tests where the executable is not wrapped yet
30+ ] ;
2931
3032 postInstall = ''
3133 wrapProgram $out/bin/cargo-valgrind --prefix PATH : ${ lib . makeBinPath [ valgrind ] }
3234 '' ;
3335
3436 checkFlags = [
35- "--skip examples_are_runnable"
3637 "--skip tests_are_runnable"
37- "--skip issue74 "
38+ "--skip default_cargo_project_reports_no_violations "
3839 ] ;
3940
4041 meta = with lib ; {
You can’t perform that action at this time.
0 commit comments