2021-08-04 22:33:21 +00:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, curl, openssl, Security }:
|
2020-05-14 06:41:49 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-tarpaulin";
|
2022-11-21 10:33:36 +00:00
|
|
|
version = "0.23.1";
|
2020-05-14 06:41:49 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "xd009642";
|
|
|
|
repo = "tarpaulin";
|
2020-11-01 22:39:49 +00:00
|
|
|
rev = version;
|
2022-11-21 10:33:36 +00:00
|
|
|
sha256 = "sha256-UDUbndsuXZDu7j+JhkS6kkFP6ju88+hXffy42XQY8gQ=";
|
2020-05-14 06:41:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2020-05-14 06:41:49 +00:00
|
|
|
];
|
2021-08-04 22:33:21 +00:00
|
|
|
buildInputs = [ openssl ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ curl Security ];
|
2020-05-14 06:41:49 +00:00
|
|
|
|
2022-11-21 10:33:36 +00:00
|
|
|
cargoSha256 = "sha256-iLqxixUEZhz3Kv7D84RqVyvtoZx69dhdLKTnVnsO0k0=";
|
2020-05-14 06:41:49 +00:00
|
|
|
#checkFlags = [ "--test-threads" "1" ];
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A code coverage tool for Rust projects";
|
|
|
|
homepage = "https://github.com/xd009642/tarpaulin";
|
|
|
|
license = with licenses; [ mit /* or */ asl20 ];
|
|
|
|
maintainers = with maintainers; [ hugoreeves ];
|
2022-05-14 16:40:56 +00:00
|
|
|
platforms = lib.platforms.x86_64;
|
2020-05-14 06:41:49 +00:00
|
|
|
};
|
|
|
|
}
|