biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / trashy / default.nix
blob09cbccb13c77aa03cbea9002f21d6890bfdd1453
1 { lib, rustPlatform, fetchCrate, installShellFiles, stdenv }:
3 rustPlatform.buildRustPackage rec {
4   pname = "trashy";
5   version = "2.0.0";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-1xHyhAV8hpgMngQdamRzEliyG60t+I3KfsDJi0+180o=";
10   };
12   cargoHash = "sha256-ZWqWtWzb+CLH1ravBb/oV+aPxplEyiC1wEFhvchcLqg=";
14   nativeBuildInputs = [ installShellFiles ];
16   postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
17     installShellCompletion --cmd trash \
18       --bash <($out/bin/trash completions bash) \
19       --fish <($out/bin/trash completions fish) \
20       --zsh <($out/bin/trash completions zsh) \
21   '';
23   meta = with lib; {
24     description = "Simple, fast, and featureful alternative to rm and trash-cli";
25     homepage = "https://github.com/oberblastmeister/trashy";
26     changelog = "https://github.com/oberblastmeister/trashy/blob/v${version}/CHANGELOG.md";
27     license = with licenses; [ asl20 /* or */ mit ];
28     maintainers = with maintainers; [ oberblastmeister ];
29     mainProgram = "trash";
30     # darwin is unsupported due to https://github.com/Byron/trash-rs/issues/8
31     platforms = platforms.linux;
32   };