From c88d408f308e38d1698efb1b40b7b824978cc0fa Mon Sep 17 00:00:00 2001 From: Luminar Leaf <80571430+LuminarLeaf@users.noreply.github.com> Date: Sat, 13 Jun 2026 11:19:26 +0530 Subject: [PATCH] yaziPlugins.allmytoes: init at 0-unstable-2025-11-05 Signed-off-by: Luminar Leaf <80571430+LuminarLeaf@users.noreply.github.com> --- .../ya/yazi/plugins/allmytoes/default.nix | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pkgs/by-name/ya/yazi/plugins/allmytoes/default.nix diff --git a/pkgs/by-name/ya/yazi/plugins/allmytoes/default.nix b/pkgs/by-name/ya/yazi/plugins/allmytoes/default.nix new file mode 100644 index 000000000000..94d83a97f6d6 --- /dev/null +++ b/pkgs/by-name/ya/yazi/plugins/allmytoes/default.nix @@ -0,0 +1,23 @@ +{ + lib, + fetchFromGitHub, + mkYaziPlugin, +}: +mkYaziPlugin { + pname = "allmytoes.yazi"; + version = "0-unstable-2025-11-22"; + + src = fetchFromGitHub { + owner = "Sonico98"; + repo = "allmytoes.yazi"; + rev = "acdc53be76434a82218eed8e1fda5512971bf3cc"; + hash = "sha256-zZ9L0FrcxFvSuDJwi6VHQXDT7b/sM4DhZ3LPi/i9tig="; + }; + + meta = { + description = "Generate freedesktop-compatible thumbnails while using yazi"; + homepage = "https://github.com/Sonico98/allmytoes.yazi"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ luminarleaf ]; + }; +}