2021-01-19 06:50:56 +00:00
|
|
|
{ lib, pkg-config, rustPlatform, fetchFromGitHub, openssl }:
|
2020-05-14 07:41:49 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-tarpaulin";
|
2021-06-30 01:28:22 +01:00
|
|
|
version = "0.18.0";
|
2020-05-14 07:41:49 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "xd009642";
|
|
|
|
repo = "tarpaulin";
|
2020-11-01 22:39:49 +00:00
|
|
|
rev = version;
|
2021-06-30 01:28:22 +01:00
|
|
|
sha256 = "sha256-j5VLxtu8Xg1fwDYWYJXGFUkfpgauG/5NauSniSZ7G2w=";
|
2020-05-14 07:41:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2020-05-14 07:41:49 +01:00
|
|
|
];
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
2021-06-30 01:28:22 +01:00
|
|
|
cargoSha256 = "sha256-1lFGczzcN4QPsIpEVQiSmNS7L+9rlSfxi+gopt2E7Ec=";
|
2020-05-14 07:41:49 +01: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 ];
|
2020-08-02 11:46:44 +01:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2020-05-14 07:41:49 +01:00
|
|
|
};
|
|
|
|
}
|