+3
-3
pkgs/development/tools/analysis/cargo-tarpaulin/default.nix
+3
-3
pkgs/development/tools/analysis/cargo-tarpaulin/default.nix
···
2
3
rustPlatform.buildRustPackage rec {
4
pname = "cargo-tarpaulin";
5
-
version = "0.25.1";
6
7
src = fetchFromGitHub {
8
owner = "xd009642";
9
repo = "tarpaulin";
10
rev = version;
11
-
sha256 = "sha256-JTkVNy2wqPIQ5mVcptI10a3Ghhdygnm9dmwUmiDqYjE=";
12
};
13
14
nativeBuildInputs = [
···
17
buildInputs = [ openssl ]
18
++ lib.optionals stdenv.isDarwin [ curl Security ];
19
20
-
cargoHash = "sha256-t4L3HSOGk/lAL8mOaVl/pm3kE0CVVzsYpyu0V6zeIFQ=";
21
#checkFlags = [ "--test-threads" "1" ];
22
doCheck = false;
23
···
2
3
rustPlatform.buildRustPackage rec {
4
pname = "cargo-tarpaulin";
5
+
version = "0.25.2";
6
7
src = fetchFromGitHub {
8
owner = "xd009642";
9
repo = "tarpaulin";
10
rev = version;
11
+
sha256 = "sha256-EJb9IVQClZwJrIorJ6FM6gDV5oSeXiwbwG9l6+4fMQ8=";
12
};
13
14
nativeBuildInputs = [
···
17
buildInputs = [ openssl ]
18
++ lib.optionals stdenv.isDarwin [ curl Security ];
19
20
+
cargoHash = "sha256-WnvMLi0GeeLsmHDxH0tGAQfX//x9GD2cd/m7Tp/GLGA=";
21
#checkFlags = [ "--test-threads" "1" ];
22
doCheck = false;
23