Unverified Commit 147525b5 authored by Matthias Beyer's avatar Matthias Beyer Committed by GitHub
Browse files

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

parents 24998d87 24fc869d
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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";
+23 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}