From d3e3d9c9bf2b4605611f4dfb9d495249c86ceac2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Zaffarano?= Date: Fri, 25 Jul 2025 14:41:29 +0200 Subject: [PATCH 1/2] maintainers: add szaffarano --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index cf10b8a6e0f3..4c4095e6b2ff 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -24507,6 +24507,12 @@ githubId = 71331875; name = "Edwin Mackenzie-Owen"; }; + szaffarano = { + email = "sebas@zaffarano.com.ar"; + github = "szaffarano"; + githubId = 58266; + name = "Sebastián Zaffarano"; + }; szczyp = { email = "qb@szczyp.com"; github = "Szczyp"; From 55c52f46441f35ea037360f94a2d4fe99190be82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Zaffarano?= Date: Fri, 25 Jul 2025 14:43:32 +0200 Subject: [PATCH 2/2] tmuxPlugins.tmux-toggle-popup: init at 0.4.2 --- pkgs/misc/tmux-plugins/default.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix index f3516f8dbf1a..feda82ed2491 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -1057,6 +1057,25 @@ in maintainers = with maintainers; [ o0th ]; }; }; + + tmux-toggle-popup = mkTmuxPlugin rec { + pluginName = "tmux-toggle-popup"; + rtpFilePath = "toggle-popup.tmux"; + version = "0.4.2"; + src = fetchFromGitHub { + owner = "loichyan"; + repo = "tmux-toggle-popup"; + tag = "v${version}"; + hash = "sha256-dlCUK+yrBkY0DnKoj/s9dJ6yITBMfWMgw3wnwzuxim4="; + }; + meta = with lib; { + homepage = "https://github.com/loichyan/tmux-toggle-popup"; + description = "Handy plugin to create toggleable popups"; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ szaffarano ]; + }; + }; } // lib.optionalAttrs config.allowAliases { mkDerivation = throw "tmuxPlugins.mkDerivation is deprecated, use tmuxPlugins.mkTmuxPlugin instead"; # added 2021-03-14