tmuxPlugins.dracula: modernize and add extra metadata (#382703)

This commit is contained in:
Gaétan Lepage
2025-02-22 01:19:17 +01:00
committed by GitHub
+7 -5
View File
@@ -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 ];
};
};