supersonic: add meta.changelog

+6 -5
+6 -5
pkgs/by-name/su/supersonic/package.nix
··· 23 23 src = fetchFromGitHub { 24 24 owner = "dweymouth"; 25 25 repo = "supersonic"; 26 - rev = "v${version}"; 26 + tag = "v${version}"; 27 27 hash = "sha256-NzgmkxG58XvaxcIcu9J0VeRjCQ922rJOp3IWX49dgIU="; 28 28 }; 29 29 ··· 88 88 }) 89 89 ]; 90 90 91 - meta = with lib; { 91 + meta = { 92 92 mainProgram = "supersonic" + lib.optionalString waylandSupport "-wayland"; 93 93 description = "Lightweight cross-platform desktop client for Subsonic music servers"; 94 94 homepage = "https://github.com/dweymouth/supersonic"; 95 - platforms = platforms.linux ++ lib.optionals (!waylandSupport) platforms.darwin; 96 - license = licenses.gpl3Plus; 97 - maintainers = with maintainers; [ 95 + changelog = "https://github.com/dweymouth/supersonic/releases/tag/${src.tag}"; 96 + platforms = lib.platforms.linux ++ lib.optionals (!waylandSupport) lib.platforms.darwin; 97 + license = lib.licenses.gpl3Plus; 98 + maintainers = with lib.maintainers; [ 98 99 zane 99 100 sochotnicky 100 101 ];