summaryrefslogtreecommitdiffstats
path: root/pkgs/misc/tmux-plugins
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2019-11-24 17:25:07 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2019-11-24 17:25:07 +0000
commitd0d5136cce5e0cbe2305c53090bd4bd886114746 (patch)
tree70092947536a3c65e215df9df20e571e34652f7a /pkgs/misc/tmux-plugins
parent9b090ccbca3f7dd26d91db06e96e8bf8282c37ca (diff)
parent195c263a812dec532656dcfd5d0360458cdc93fd (diff)
Merge remote-tracking branch 'upstream/master' into wrapper-pname-support
Diffstat (limited to 'pkgs/misc/tmux-plugins')
-rw-r--r--pkgs/misc/tmux-plugins/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix
index 3c664ac0cf3e..4b93ec8dff9d 100644
--- a/pkgs/misc/tmux-plugins/default.nix
+++ b/pkgs/misc/tmux-plugins/default.nix
@@ -123,6 +123,16 @@ in rec {
};
};
+ gruvbox = mkDerivation {
+ pluginName = "gruvbox";
+ rtpFilePath = "gruvbox-tpm.tmux";
+ src = fetchgit {
+ url = "https://github.com/egel/tmux-gruvbox";
+ rev = "6149fd8b5d6924925b4d5aa6935039780e94f3d6";
+ sha256 = "1ykr4yardavd0x7yfrnshd4b0gi8p31pji7i79ib0nss134zncpb";
+ };
+ };
+
logging = mkDerivation {
pluginName = "logging";
src = fetchgit {
@@ -177,6 +187,19 @@ in rec {
};
};
+ plumb = mkDerivation {
+ pluginName = "plumb";
+ src = fetchFromGitHub {
+ owner = "eraserhd";
+ repo = "tmux-plumb";
+ rev = "v0.1.1";
+ sha256 = "1c6k4fdl0az9811r6k164mgd4w5la75xr6x7nabmy046xc0z5i2r";
+ };
+ postInstall = ''
+ sed -i -e 's,9 plumb,${pkgs.plan9port}/bin/9 plumb,' $target/scripts/plumb
+ '';
+ };
+
prefix-highlight = mkDerivation {
pluginName = "prefix-highlight";
src = fetchgit {
@@ -225,6 +248,16 @@ in rec {
};
};
+ sysstat = mkDerivation {
+ pluginName = "sysstat";
+ src = fetchFromGitHub {
+ owner = "samoshkin";
+ repo = "tmux-plugin-sysstat";
+ rev = "29e150f403151f2341f3abcb2b2487a5f011dd23";
+ sha256 = "013mv9p6r2r0ls3p60l8hdad4hm8niv3wr27vgm925gxmibi4hyq";
+ };
+ };
+
tmux-colors-solarized = mkDerivation {
pluginName = "tmuxcolors";
src = fetchFromGitHub {