2023-07-15 17:15:38 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, openssl
|
|
|
|
, stdenv
|
|
|
|
, curl
|
|
|
|
, Security
|
|
|
|
}:
|
2020-05-15 21:57:56 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-tarpaulin";
|
2024-07-27 06:49:29 +00:00
|
|
|
version = "0.31.0";
|
2020-05-15 21:57:56 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "xd009642";
|
|
|
|
repo = "tarpaulin";
|
2020-11-03 02:18:15 +00:00
|
|
|
rev = version;
|
2024-07-27 06:49:29 +00:00
|
|
|
hash = "sha256-4Qnmk9pHGFaRU/bcgrTKcuUJts0HQCcND836QLCX3Uo=";
|
2020-05-15 21:57:56 +00:00
|
|
|
};
|
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
cargoHash = "sha256-riBvKGtOoN6eaJqVWbhOh1cSDDtlGUIV1xFFzVfPj4Y=";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Code coverage tool for Rust projects";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "cargo-tarpaulin";
|
2020-05-15 21:57:56 +00:00
|
|
|
homepage = "https://github.com/xd009642/tarpaulin";
|
2023-07-15 17:15:38 +00:00
|
|
|
changelog = "https://github.com/xd009642/tarpaulin/blob/${src.rev}/CHANGELOG.md";
|
2020-05-15 21:57:56 +00:00
|
|
|
license = with licenses; [ mit /* or */ asl20 ];
|
2023-07-15 17:15:38 +00:00
|
|
|
maintainers = with maintainers; [ figsoda hugoreeves ];
|
2020-05-15 21:57:56 +00:00
|
|
|
};
|
|
|
|
}
|