From bd72d520133cbeefbbcc45cc96168d347f9c0b2f Mon Sep 17 00:00:00 2001 From: Fernando Rodrigues Date: Tue, 15 Oct 2024 02:13:43 +0000 Subject: [PATCH] tmuxPlugins.nord: 0.3.0 -> 0.3.0-unstable-2023-03-03 Nord has... stagnated a bit. There are unreleased changes from the develop branch that have been stewing for a while, so let's provide them to Nixpkgs users. Changelog: https://github.com/nordtheme/tmux/compare/v0.3.0...develop Notable changes: - The date formatting is no longer hardcoded. - *-style configurations are now using the `bg=...;fg=...` syntax. Signed-off-by: Fernando Rodrigues --- pkgs/misc/tmux-plugins/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix index 9cb420ae182e..d1a5995f591e 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -378,14 +378,14 @@ in rec { }; }; - nord = mkTmuxPlugin rec { + nord = mkTmuxPlugin { pluginName = "nord"; - version = "0.3.0"; + version = "0.3.0-unstable-2023-03-03"; src = pkgs.fetchFromGitHub { owner = "nordtheme"; repo = "tmux"; - rev = "v${version}"; - hash = "sha256-s/rimJRGXzwY9zkOp9+2bAF1XCT9FcyZJ1zuHxOBsJM="; + rev = "f7b6da07ab55fe32ee5f7d62da56d8e5ac691a92"; + hash = "sha256-mcmVYNWOUoQLiu4eM/EUudRg67Gcou13xuC6zv9aMKA="; }; meta = { homepage = "https://www.nordtheme.com/ports/tmux"; @@ -399,6 +399,7 @@ in rec { theme in order to work properly. ''; license = lib.licenses.mit; + maintainers = [ lib.maintainers.sigmasquadron ]; }; };