trashy: init at 1.0.3
This commit is contained in:
parent
e8a34a3cbf
commit
6606e3dadd
2 changed files with 33 additions and 0 deletions
31
pkgs/tools/misc/trashy/default.nix
Normal file
31
pkgs/tools/misc/trashy/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
{ lib, fetchFromGitHub, rustPlatform, installShellFiles }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "trashy";
|
||||||
|
version = "1.0.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "oberblastmeister";
|
||||||
|
repo = "trashy";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-b50Q7knJzXKDfM1kw6wLvXunhgOXVs+zYvZx/NYqMdk=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "sha256-2hNNLXuAHd1bquhHimniqryTVMfBmPAOossggICScqQ=";
|
||||||
|
|
||||||
|
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 = "A simple, fast, and featureful alternative to rm and trash-cli.";
|
||||||
|
homepage = "https://github.com/oberblastmeister/trashy";
|
||||||
|
license = with licenses; [ asl20 /* or */ mit ];
|
||||||
|
maintainers = with maintainers; [ oberblastmeister ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -11574,6 +11574,8 @@ with pkgs;
|
||||||
|
|
||||||
trash-cli = callPackage ../tools/misc/trash-cli { };
|
trash-cli = callPackage ../tools/misc/trash-cli { };
|
||||||
|
|
||||||
|
trashy = callPackage ../tools/misc/trashy { };
|
||||||
|
|
||||||
trenchbroom = libsForQt5.callPackage ../applications/misc/trenchbroom {
|
trenchbroom = libsForQt5.callPackage ../applications/misc/trenchbroom {
|
||||||
inherit (xorg) libXxf86vm;
|
inherit (xorg) libXxf86vm;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue