From 77ebabacf5e02e9c7e97067fdf82b8d4486c6169 Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Sun, 16 Feb 2025 19:53:11 -0500 Subject: [PATCH] tmuxPlugins.dracula: modernize and add extra metadata Signed-off-by: Ethan Carter Edwards --- pkgs/misc/tmux-plugins/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix index ea59cf1e3f1a..1211189c87dd 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -201,15 +201,17 @@ in rec { src = fetchFromGitHub { owner = "dracula"; repo = "tmux"; - rev = "v${version}"; + tag = "v${version}"; hash = "sha256-WNgCa8F618JQiHDM1YxHj7oR7w+7U6SU89K90RYIUh8="; }; - meta = with lib; { + meta = { homepage = "https://draculatheme.com/tmux"; + downloadPage = "https://github.com/dracula/tmux"; description = "Feature packed Dracula theme for tmux!"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ ethancedwards8 ]; + changelog = "https://github.com/dracula/tmux/releases/tag/v${version}/CHANGELOG.md"; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ethancedwards8 ]; }; };