diff --git a/doc/release-notes/rl-2605.section.md b/doc/release-notes/rl-2605.section.md index b3d4ce569f09..3b4c274609f8 100644 --- a/doc/release-notes/rl-2605.section.md +++ b/doc/release-notes/rl-2605.section.md @@ -366,6 +366,8 @@ - We now use the upstream wrapper script for Gradle, supporting both the `JAVA_HOME` and `GRADLE_OPTS` environment variables. +- Updated `gonic` to 0.21.0. A full ("slow") scan is recommended after upgrading to v0.21.0 to pick up the newly scanned fields (contributors, ISRCs, record labels, per-track years, ARTIST_CREDIT). + - the `autossh-ng` NixOS module was introduced as a simpler alternative to the existing `autossh` module. - Added `haskell.packages.microhs`, a set of Haskell packages built with MicroHs. diff --git a/pkgs/by-name/go/gonic/package.nix b/pkgs/by-name/go/gonic/package.nix index e5470be8825b..228922950b82 100644 --- a/pkgs/by-name/go/gonic/package.nix +++ b/pkgs/by-name/go/gonic/package.nix @@ -18,17 +18,17 @@ mpv, }: -buildGoModule rec { +buildGoModule (finalAttrs: { pname = "gonic"; - version = "0.20.1"; + version = "0.21.0"; src = fetchFromGitHub { owner = "sentriz"; repo = "gonic"; - rev = "v${version}"; - sha256 = "sha256-tW+GuNMMeiPf5XInR1BN2L7ommWh1SPClbRew8/2+cA="; + rev = "v${finalAttrs.version}"; + sha256 = "sha256-+plbpqaWWr3gA3grfl5yawEyrQyw6h6rvATqGxEO09c="; }; - vendorHash = "sha256-ynoIR4S02v3qec7447feuu/igFWR20VQVbL0GbTBpqM="; + vendorHash = "sha256-OynYgtqWNMyrUvysi9cNqL0nAfUXP8cOEx02lSP6E7E="; # TODO(Profpatsch): write a test for transcoding support, # since it is prone to break @@ -68,4 +68,4 @@ buildGoModule rec { maintainers = with lib.maintainers; [ autrimpo ]; mainProgram = "gonic"; }; -} +})