Skip to content

Commit 7f3afb5

Browse files
authored
tmuxPlugins.dracula: modernize and add extra metadata (#382703)
2 parents 63d0ef6 + 77ebaba commit 7f3afb5

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

pkgs/misc/tmux-plugins/default.nix

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -201,15 +201,17 @@ in rec {
201201
src = fetchFromGitHub {
202202
owner = "dracula";
203203
repo = "tmux";
204-
rev = "v${version}";
204+
tag = "v${version}";
205205
hash = "sha256-WNgCa8F618JQiHDM1YxHj7oR7w+7U6SU89K90RYIUh8=";
206206
};
207-
meta = with lib; {
207+
meta = {
208208
homepage = "https://draculatheme.com/tmux";
209+
downloadPage = "https://github.com/dracula/tmux";
209210
description = "Feature packed Dracula theme for tmux!";
210-
license = licenses.mit;
211-
platforms = platforms.unix;
212-
maintainers = with maintainers; [ ethancedwards8 ];
211+
changelog = "https://github.com/dracula/tmux/releases/tag/v${version}/CHANGELOG.md";
212+
license = lib.licenses.mit;
213+
platforms = lib.platforms.unix;
214+
maintainers = with lib.maintainers; [ ethancedwards8 ];
213215
};
214216
};
215217

0 commit comments

Comments
 (0)