From 65e12b960f55a16c1121d77cb00d01f077bfe560 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9D=91=B7=F0=9D=92=89=F0=9D=92=8A=F0=9D=92=8D?= =?UTF-8?q?=F0=9D=92=90=F0=9D=92=84=F0=9D=92=82=F0=9D=92=8D=F0=9D=92=9A?= =?UTF-8?q?=F0=9D=92=94=F0=9D=92=95?= Date: Fri, 10 Apr 2026 16:16:37 -0400 Subject: [PATCH] yaziPlugins: init split-tabs Update default.nix Co-authored-by: XYenon Update default.nix Co-authored-by: XYenon --- .../ya/yazi/plugins/split-tabs/default.nix | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pkgs/by-name/ya/yazi/plugins/split-tabs/default.nix diff --git a/pkgs/by-name/ya/yazi/plugins/split-tabs/default.nix b/pkgs/by-name/ya/yazi/plugins/split-tabs/default.nix new file mode 100644 index 000000000000..1990aa5722c7 --- /dev/null +++ b/pkgs/by-name/ya/yazi/plugins/split-tabs/default.nix @@ -0,0 +1,24 @@ +{ + lib, + fetchFromGitHub, + mkYaziPlugin, +}: + +mkYaziPlugin { + pname = "split-tabs.yazi"; + version = "0-unstable-2026-04-09"; + + src = fetchFromGitHub { + owner = "terrakok"; + repo = "split-tabs.yazi"; + rev = "3f297277ed79cef5d22ea19883ce4d22e40c45a8"; + hash = "sha256-exa9I5GaF5T2dBnKIcB1gSdtdp2QlzbHv2J9FGxfpBM="; + }; + + meta = { + description = "Yazi plugin that provides a dual-pane view by splitting the screen between two tabs"; + homepage = "https://github.com/terrakok/split-tabs.yazi"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ philocalyst ]; + }; +}