From 7b01a5fea1bc2b97da07839373e3c7bb5d327f0d Mon Sep 17 00:00:00 2001 From: Anninzy <143312793+Anninzy@users.noreply.github.com> Date: Mon, 2 Mar 2026 18:31:22 +0000 Subject: [PATCH] yaziPlugins.gvfs: init at 0-unstable-2026-02-16 --- pkgs/by-name/ya/yazi/plugins/gvfs/default.nix | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pkgs/by-name/ya/yazi/plugins/gvfs/default.nix diff --git a/pkgs/by-name/ya/yazi/plugins/gvfs/default.nix b/pkgs/by-name/ya/yazi/plugins/gvfs/default.nix new file mode 100644 index 000000000000..61e834d0a38a --- /dev/null +++ b/pkgs/by-name/ya/yazi/plugins/gvfs/default.nix @@ -0,0 +1,24 @@ +{ + 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; + }; +}