about summary refs log tree commit diff
diff options
context:
space:
mode:
authoro0th <o0th@pm.me>2024-06-02 12:23:47 +0200
committero0th <o0th@pm.me>2024-06-02 12:23:47 +0200
commit0a32172a2255651044cf6c81df93a71908d5438d (patch)
tree3d18a52088ff345eb091f470787106f7eed29253
parentd962083c37d0cc90f757c81008d7fd1e19afae5f (diff)
tmuxPlugins.tmux-nova: init at 1.2.0
-rw-r--r--pkgs/misc/tmux-plugins/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix
index 76b786001d803..e3150928373e8 100644
--- a/pkgs/misc/tmux-plugins/default.nix
+++ b/pkgs/misc/tmux-plugins/default.nix
@@ -818,4 +818,23 @@ in rec {
       sha256 = "hRvkBf+YrWycecnDixAsD4CAHg3KsioomfJ/nLl5Zgs=";
     };
   };
+
+  tmux-nova = mkTmuxPlugin rec {
+    pluginName = "tmux-nova";
+    rtpFilePath = "nova.tmux";
+    version = "1.2.0";
+    src = fetchFromGitHub {
+      owner = "o0th";
+      repo = "tmux-nova";
+      rev = "v${version}";
+      sha256 = "16llz3nlyw88lyd8mmj27i0ncyhpfjj5c1yikngf7nxcqsbjmcnh";
+    };
+    meta = with lib; {
+      homepage = "https://github.com/o0th/tmux-nova";
+      description = "tmux-nova theme";
+      license = licenses.mit;
+      platforms = platforms.unix;
+      maintainers = with maintainers; [ o0th ];
+    };
+  };
 }