tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
tmuxPlugins.tmux-toggle-popup: init at 0.4.2
Sebastián Zaffarano
8 months ago
55c52f46
d3e3d9c9
+19
1 changed file
expand all
collapse all
unified
split
pkgs
misc
tmux-plugins
default.nix
+19
pkgs/misc/tmux-plugins/default.nix
reviewed
···
1057
1057
maintainers = with maintainers; [ o0th ];
1058
1058
};
1059
1059
};
1060
1060
+
1061
1061
+
tmux-toggle-popup = mkTmuxPlugin rec {
1062
1062
+
pluginName = "tmux-toggle-popup";
1063
1063
+
rtpFilePath = "toggle-popup.tmux";
1064
1064
+
version = "0.4.2";
1065
1065
+
src = fetchFromGitHub {
1066
1066
+
owner = "loichyan";
1067
1067
+
repo = "tmux-toggle-popup";
1068
1068
+
tag = "v${version}";
1069
1069
+
hash = "sha256-dlCUK+yrBkY0DnKoj/s9dJ6yITBMfWMgw3wnwzuxim4=";
1070
1070
+
};
1071
1071
+
meta = with lib; {
1072
1072
+
homepage = "https://github.com/loichyan/tmux-toggle-popup";
1073
1073
+
description = "Handy plugin to create toggleable popups";
1074
1074
+
license = licenses.mit;
1075
1075
+
platforms = platforms.unix;
1076
1076
+
maintainers = with maintainers; [ szaffarano ];
1077
1077
+
};
1078
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