2021-08-05 21:33:18 +00:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, curl, openssl, Security }:
|
2020-05-15 21:57:56 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-tarpaulin";
|
2022-01-25 03:21:06 +00:00
|
|
|
version = "0.19.1";
|
2020-05-15 21:57:56 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "xd009642";
|
|
|
|
repo = "tarpaulin";
|
2020-11-03 02:18:15 +00:00
|
|
|
rev = version;
|
2022-01-25 03:21:06 +00:00
|
|
|
sha256 = "sha256-H/EQTS+d317icCZdOWTvykzIFQC7ia7/jYFkImgogps=";
|
2020-05-15 21:57:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2021-02-05 17:12:51 +00:00
|
|
|
pkg-config
|
2020-05-15 21:57:56 +00:00
|
|
|
];
|
2021-08-05 21:33:18 +00:00
|
|
|
buildInputs = [ openssl ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ curl Security ];
|
2020-05-15 21:57:56 +00:00
|
|
|
|
2022-01-25 03:21:06 +00:00
|
|
|
cargoSha256 = "sha256-A3J5od6yT7eVU66WfvG/umne0RDBZCf8IvQpW6OTZSE=";
|
2020-05-15 21:57:56 +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 ];
|
|
|
|
};
|
|
|
|
}
|