supersonic: 0.18.0 -> 0.18.1 (#442795)

authored by

dotlambda and committed by
GitHub
51b74124 a8bcb183

+9 -8
+9 -8
pkgs/by-name/su/supersonic/package.nix
··· 18 18 19 19 buildGoModule rec { 20 20 pname = "supersonic" + lib.optionalString waylandSupport "-wayland"; 21 - version = "0.18.0"; 21 + version = "0.18.1"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "dweymouth"; 25 25 repo = "supersonic"; 26 - rev = "v${version}"; 27 - hash = "sha256-/8GFrMQvr2dXtK5Cyi5mc+9wxJ95jCzkpZ2Xk6ULrp8="; 26 + tag = "v${version}"; 27 + hash = "sha256-NzgmkxG58XvaxcIcu9J0VeRjCQ922rJOp3IWX49dgIU="; 28 28 }; 29 29 30 - vendorHash = "sha256-C610AlCpY7hpW4AQbT9HYaRxJdLmpqgQbi5mIsdSTrM="; 30 + vendorHash = "sha256-dG5D7a13TbVurjqFbKwiZ5IOPul39sCmyPCCzRx0NEY="; 31 31 32 32 nativeBuildInputs = [ 33 33 copyDesktopItems ··· 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 ];