From 14e5d9588e575f3e0d90742d44073876afdcf34f Mon Sep 17 00:00:00 2001 From: Anninzy <143312793+Anninzy@users.noreply.github.com> Date: Sat, 13 Jun 2026 14:38:18 +0100 Subject: [PATCH] yaziPlugins.omni-trash: init at 0-unstable-2026-06-10 --- .../ya/yazi/plugins/omni-trash/default.nix | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pkgs/by-name/ya/yazi/plugins/omni-trash/default.nix diff --git a/pkgs/by-name/ya/yazi/plugins/omni-trash/default.nix b/pkgs/by-name/ya/yazi/plugins/omni-trash/default.nix new file mode 100644 index 000000000000..8857307ff8bd --- /dev/null +++ b/pkgs/by-name/ya/yazi/plugins/omni-trash/default.nix @@ -0,0 +1,23 @@ +{ + lib, + fetchFromGitHub, + mkYaziPlugin, +}: +mkYaziPlugin { + pname = "omni-trash.yazi"; + version = "0-unstable-2026-06-10"; + + src = fetchFromGitHub { + owner = "goon"; + repo = "omni-trash.yazi"; + rev = "3c2a9923673e0552a093afc4122473df1d427a93"; + hash = "sha256-heqqEWzJCoNt3CIJAEaWfqUX4J9BfVEw3OsU7Xjc17M="; + }; + + meta = { + description = "Yazi plugin to manage your trash across all drives from a single, unified interface, powered by trash-cli"; + homepage = "https://github.com/goon/omni-trash.yazi"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ anninzy ]; + }; +}