From 4bcda5ed9e9c3daee9a89446d45b9bf117a445f7 Mon Sep 17 00:00:00 2001 From: Anne Douwe Bouma Date: Mon, 29 Jun 2026 12:17:33 +0200 Subject: [PATCH] tmuxPlugins.tmux-tpad: init at v0.3.0 Add tmux-tpad plugin (v0.3.0) to pkgs/misc/tmux-plugins. Fetches from Subbeh/tmux-tpad@v0.3.0 with the provided sha256. Provides rtpFilePath "tpad.tmux" and metadata including homepage, description, MIT license, Unix platforms, and maintainer anned20. --- 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 c4ae37f164e1..880c4d7f04e5 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -1363,6 +1363,25 @@ in }; }; + tmux-tpad = mkTmuxPlugin { + pluginName = "tmux-tpad"; + rtpFilePath = "tpad.tmux"; + version = "0.3.0"; + src = fetchFromGitHub { + owner = "Subbeh"; + repo = "tmux-tpad"; + rev = "v0.3.0"; + hash = "sha256-w1eNg6n5JEWcKT7hCr3nFPe01kW3PwGBx8sdtfFojvk="; + }; + meta = { + homepage = "https://github.com/Subbeh/tmux-tpad"; + description = "Tmux scratchpad plugin"; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ anned20 ]; + }; + }; + tmux-window-name = mkTmuxPlugin { pluginName = "tmux-window-name"; version = "2024-03-08";