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-06-05 15:53:02 +00:00
|
|
|
version = "0.30.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-06-05 15:53:02 +00:00
|
|
|
hash = "sha256-RtkW2FDey049URmr0WGNYcz5sTZXIQ7dZL/OlIaKX20=";
|
2020-05-15 21:57:56 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
cargoHash = "sha256-HBpEMjc2FQvFqvvcCtxHJBj2waFau77t+m+1ZfomguA=";
|
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
|
|
|
};
|
|
|
|
}
|