From b2e4b6b22e3679abf9f19bdae8e0fa5c23a71a38 Mon Sep 17 00:00:00 2001 From: thomasjm Date: Wed, 13 Nov 2024 03:18:24 -0800 Subject: [PATCH] tmuxPlugins.tmux-powerline: init at 3.0.0 --- pkgs/misc/tmux-plugins/default.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix index 5dd73932e625..e4da6845cdcb 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -772,6 +772,26 @@ in rec { }; }; + tmux-powerline = mkTmuxPlugin { + pluginName = "powerline"; + version = "3.0.0"; + src = fetchFromGitHub { + owner = "erikw"; + repo = "tmux-powerline"; + rev = "2480e5531e0027e49a90eaf540f973e624443937"; + hash = "sha256-25uG7OI8OHkdZ3GrTxG1ETNeDtW1K+sHu2DfJtVHVbk="; + }; + rtpFilePath = "main.tmux"; + meta = { + homepage = "https://github.com/erikw/tmux-powerline"; + description = "Empowering your tmux (status bar) experience!"; + longDescription = "A tmux plugin giving you a hackable status bar consisting of dynamic & beautiful looking powerline segments, written purely in bash."; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thomasjm ]; + }; + }; + tmux-thumbs = pkgs.callPackage ./tmux-thumbs { inherit mkTmuxPlugin; };