tmuxPlugins.tmux-toggle-popup: init at 0.4.2 (#428294)

This commit is contained in:
Aleksana
2025-08-01 17:33:29 +08:00
committed by GitHub
2 changed files with 25 additions and 0 deletions
+6
View File
@@ -24537,6 +24537,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";
+19
View File
@@ -1097,6 +1097,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