nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

tmuxPlugins.tmux-toggle-popup: init at 0.4.2

+19
+19
pkgs/misc/tmux-plugins/default.nix
··· 1057 1057 maintainers = with maintainers; [ o0th ]; 1058 1058 }; 1059 1059 }; 1060 + 1061 + tmux-toggle-popup = mkTmuxPlugin rec { 1062 + pluginName = "tmux-toggle-popup"; 1063 + rtpFilePath = "toggle-popup.tmux"; 1064 + version = "0.4.2"; 1065 + src = fetchFromGitHub { 1066 + owner = "loichyan"; 1067 + repo = "tmux-toggle-popup"; 1068 + tag = "v${version}"; 1069 + hash = "sha256-dlCUK+yrBkY0DnKoj/s9dJ6yITBMfWMgw3wnwzuxim4="; 1070 + }; 1071 + meta = with lib; { 1072 + homepage = "https://github.com/loichyan/tmux-toggle-popup"; 1073 + description = "Handy plugin to create toggleable popups"; 1074 + license = licenses.mit; 1075 + platforms = platforms.unix; 1076 + maintainers = with maintainers; [ szaffarano ]; 1077 + }; 1078 + }; 1060 1079 } 1061 1080 // lib.optionalAttrs config.allowAliases { 1062 1081 mkDerivation = throw "tmuxPlugins.mkDerivation is deprecated, use tmuxPlugins.mkTmuxPlugin instead"; # added 2021-03-14