cargo-kcov: remove (#376643)

This commit is contained in:
Donovan Glover
2025-01-25 12:31:22 +00:00
committed by GitHub
2 changed files with 1 additions and 40 deletions
-40
View File
@@ -1,40 +0,0 @@
{
lib,
rustPlatform,
fetchFromGitHub,
makeWrapper,
kcov,
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-kcov";
version = "0.5.2";
src = fetchFromGitHub {
owner = "kennytm";
repo = pname;
rev = "v${version}";
sha256 = "0hqplgj3i8js42v2kj44khk543a93sk3n6wlfpv3c84pdqlm29br";
};
cargoHash = "sha256-cgnTf4KKthO1HvjFCjoZw7eCTqsbobHW5Kjx/6V3r1Q=";
doCheck = false;
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
wrapProgram $out/bin/cargo-kcov \
--prefix PATH : ${lib.makeBinPath [ kcov ]}
'';
meta = with lib; {
description = "Cargo subcommand to run kcov to get coverage report on Linux";
mainProgram = "cargo-kcov";
homepage = "https://github.com/kennytm/cargo-kcov";
license = with licenses; [ mit ];
maintainers = with maintainers; [
saschagrunert
matthiasbeyer
];
};
}
+1
View File
@@ -200,6 +200,7 @@ mapAliases {
canonicalize-jars-hook = stripJavaArchivesHook; # Added 2024-03-17
cargo-deps = throw "cargo-deps has been removed as the repository is deleted"; # Added 2024-04-09
cargo-espflash = espflash;
cargo-kcov = throw "'cargo-kcov' has been removed due to lack of upstream maintenance"; # Added 2025-01-25
cawbird = throw "cawbird has been abandoned upstream and is broken anyways due to Twitter closing its API";
certmgr-selfsigned = certmgr; # Added 2023-11-30
cgal_4 = throw "cgal_4 has been removed as it is obsolete use cgal instead"; # Added 2024-12-30