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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
852 B
Nix
Raw Normal View History

{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, curl, openssl, Security }:
2020-05-14 06:41:49 +00:00
rustPlatform.buildRustPackage rec {
pname = "cargo-tarpaulin";
2022-03-21 02:20:52 +00:00
version = "0.20.0";
2020-05-14 06:41:49 +00:00
src = fetchFromGitHub {
owner = "xd009642";
repo = "tarpaulin";
rev = version;
2022-03-21 02:20:52 +00:00
sha256 = "sha256-LMHaRGZZqFUCbrChzlLA/gUArlGC5DUI2fc1bkLU2CA=";
2020-05-14 06:41:49 +00:00
};
nativeBuildInputs = [
pkg-config
2020-05-14 06:41:49 +00:00
];
buildInputs = [ openssl ]
++ lib.optionals stdenv.isDarwin [ curl Security ];
2020-05-14 06:41:49 +00:00
2022-03-21 02:20:52 +00:00
cargoSha256 = "sha256-ei+ilmrlJYmt08A+aV2Rc5pn5dkuEBgfm9kyLkfFe9A=";
2020-05-14 06:41:49 +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 ];
};
}