From 24fc869d84da83156a2faf1fe05245abd9a57f3a Mon Sep 17 00:00:00 2001 From: Ilosariph <71074737+Ilosariph@users.noreply.github.com> Date: Wed, 15 Apr 2026 23:05:25 +0200 Subject: [PATCH] yaziPlugins.sshfs: init at 2.0.0-unstable-2026-04-15 --- .../by-name/ya/yazi/plugins/sshfs/default.nix | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pkgs/by-name/ya/yazi/plugins/sshfs/default.nix diff --git a/pkgs/by-name/ya/yazi/plugins/sshfs/default.nix b/pkgs/by-name/ya/yazi/plugins/sshfs/default.nix new file mode 100644 index 000000000000..afd6833bd08c --- /dev/null +++ b/pkgs/by-name/ya/yazi/plugins/sshfs/default.nix @@ -0,0 +1,23 @@ +{ + lib, + fetchFromGitHub, + mkYaziPlugin, +}: +mkYaziPlugin { + pname = "sshfs.yazi"; + version = "2.0.0-unstable-2026-04-15"; + + src = fetchFromGitHub { + owner = "uhs-robert"; + repo = "sshfs.yazi"; + rev = "7ba17a8c8498fca9f0a9c437704e74b56d96ed96"; + hash = "sha256-TS3/xl8jbbCoF1LzPYvmG9BRqvlzPg4EZRErlL7S2/M="; + }; + + meta = { + description = "Minimal SSHFS integration for the Yazi terminal file‑manager"; + homepage = "https://github.com/uhs-robert/sshfs.yazi"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ilosariph ]; + }; +}