nixpkgs/pkgs/development/tools/analysis/cargo-tarpaulin/default.nix

31 lines
811 B
Nix
Raw Normal View History

2020-05-13 23:41:49 -07:00
{ lib, pkgconfig, rustPlatform, fetchFromGitHub, openssl }:
rustPlatform.buildRustPackage rec {
pname = "cargo-tarpaulin";
2020-05-27 17:45:15 -07:00
version = "0.13.2";
2020-05-13 23:41:49 -07:00
src = fetchFromGitHub {
owner = "xd009642";
repo = "tarpaulin";
rev = "${version}";
2020-05-27 17:45:15 -07:00
sha256 = "0sjd0xvphrc2kxzvwk4l0dnshn062ghn9f29h7k2ifsf2myl7066";
2020-05-13 23:41:49 -07:00
};
nativeBuildInputs = [
pkgconfig
];
buildInputs = [ openssl ];
2020-05-27 17:45:15 -07:00
cargoSha256 = "1w9pymg989kl29s4dhr32ck0nq61pg9h1qf4aad1sv83llbqahq0";
2020-05-13 23:41:49 -07: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 ];
platforms = platforms.linux;
};
}