Unverified Commit 17cf14df authored by Austin Horstman's avatar Austin Horstman Committed by GitHub
Browse files

yaziPlugins.gvfs: init at 0-unstable-2026-02-16 (#495929)

parents f69e17b3 7b01a5fe
Loading
Loading
Loading
Loading
+24 −0
Original line number Diff line number Diff line
{
  lib,
  fetchFromGitHub,
  mkYaziPlugin,
}:
mkYaziPlugin {
  pname = "gvfs.yazi";
  version = "0-unstable-2026-02-16";

  src = fetchFromGitHub {
    owner = "boydaihungst";
    repo = "gvfs.yazi";
    rev = "9d64595cd5ba669dda27d41a936e748a795e949a";
    hash = "sha256-KXx0SDcksaA7cM7UonUGVtm1JJEyC1lGja3R+fsHxtY=";
  };

  meta = {
    description = "Transparently mount and unmount devices or remote storage in read and write mode";
    homepage = "https://github.com/boydaihungst/gvfs.yazi";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ anninzy ];
    platforms = lib.platforms.linux;
  };
}