Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
717 B
Nix
33 lines
717 B
Nix
{
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
lib,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rm-improved";
|
|
version = "0.13.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nivekuil";
|
|
repo = "rip";
|
|
rev = version;
|
|
hash = "sha256-jbXmGPrb9PhmCSUFVcCqg8HjntS2mrYeNuaMsU+zIFI=";
|
|
};
|
|
|
|
cargoHash = "sha256-jfrQkwJ6PcBs5W5F9x7Nt5xPP5f2G6MSb2AISu+g3gE=";
|
|
|
|
cargoPatches = [
|
|
# Cargo.lock out-of-date
|
|
./Cargo.lock.patch
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Replacement for rm with focus on safety, ergonomics and performance";
|
|
homepage = "https://github.com/nivekuil/rip";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ nils-degroot ];
|
|
mainProgram = "rip";
|
|
};
|
|
}
|