8 rustPlatform.buildRustPackage rec {
12 src = fetchFromGitHub {
16 sha256 = "0hqplgj3i8js42v2kj44khk543a93sk3n6wlfpv3c84pdqlm29br";
19 cargoSha256 = "0m5gfyjzzwd8wkbb388vmd785dy334x0migq3ssi7dlah9zx62bj";
22 nativeBuildInputs = [ makeWrapper ];
25 wrapProgram $out/bin/cargo-kcov \
26 --prefix PATH : ${lib.makeBinPath [ kcov ]}
30 description = "Cargo subcommand to run kcov to get coverage report on Linux";
31 mainProgram = "cargo-kcov";
32 homepage = "https://github.com/kennytm/cargo-kcov";
33 license = with licenses; [ mit ];
34 maintainers = with maintainers; [ saschagrunert matthiasbeyer ];