yaziPlugins.sshfs: init at 2.0.0-unstable-2026-04-15 (#510422)

This commit is contained in:
Matthias Beyer
2026-04-17 06:39:12 +00:00
committed by GitHub
2 changed files with 29 additions and 0 deletions
+6
View File
@@ -11352,6 +11352,12 @@
githubId = 3948275;
name = "Harikrishnan R";
};
ilosariph = {
email = "simon@simon-wick.ch";
github = "Ilosariph";
githubId = 71074737;
name = "Simon Wick";
};
ilya-epifanov = {
email = "mail@ilya.network";
github = "ilya-epifanov";
@@ -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 filemanager";
homepage = "https://github.com/uhs-robert/sshfs.yazi";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ilosariph ];
};
}