8 rustPlatform.buildRustPackage rec {
12 src = fetchFromGitHub {
16 sha256 = "0hqplgj3i8js42v2kj44khk543a93sk3n6wlfpv3c84pdqlm29br";
19 cargoHash = "sha256-cgnTf4KKthO1HvjFCjoZw7eCTqsbobHW5Kjx/6V3r1Q=";
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 ];