30 lines
809 B
Nix
30 lines
809 B
Nix
{ lib, pkgconfig, rustPlatform, fetchFromGitHub, openssl }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-tarpaulin";
|
|
version = "0.17.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xd009642";
|
|
repo = "tarpaulin";
|
|
rev = version;
|
|
sha256 = "1z104cd3wg718x1d89znppx4h6f0c6icgmpcllyrd0d19lb71a2b";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
];
|
|
buildInputs = [ openssl ];
|
|
|
|
cargoSha256 = "0pn9xgryfb7f0plx50v9i7hsv1wib87pi0fl43cv6hgqyrdb52ny";
|
|
#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 = [ "x86_64-linux" ];
|
|
};
|
|
}
|