mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
cargo-kcov: remove
6 years since the last upstream commit. Lockfile is too old for fetchCargoVendor.
This commit is contained in:
parent
2bd0a0f92f
commit
0194f3f62d
2 changed files with 1 additions and 40 deletions
|
@ -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
|
||||
];
|
||||
};
|
||||
}
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue