mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
34 lines
1.1 KiB
Nix
34 lines
1.1 KiB
Nix
{ lib, rustPlatform, fetchCrate, installShellFiles }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "trashy";
|
|
version = "2.0.0";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-1xHyhAV8hpgMngQdamRzEliyG60t+I3KfsDJi0+180o=";
|
|
};
|
|
|
|
cargoHash = "sha256-ZWqWtWzb+CLH1ravBb/oV+aPxplEyiC1wEFhvchcLqg=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
preFixup = ''
|
|
installShellCompletion --cmd trash \
|
|
--bash <($out/bin/trash completions bash) \
|
|
--fish <($out/bin/trash completions fish) \
|
|
--zsh <($out/bin/trash completions zsh) \
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Simple, fast, and featureful alternative to rm and trash-cli";
|
|
homepage = "https://github.com/oberblastmeister/trashy";
|
|
changelog = "https://github.com/oberblastmeister/trashy/blob/v${version}/CHANGELOG.md";
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
|
maintainers = with maintainers; [ oberblastmeister ];
|
|
mainProgram = "trash";
|
|
# darwin is unsupported due to https://github.com/Byron/trash-rs/issues/8
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|