Merge pull request #202436 from DeeUnderscore/update/picard-2.8.4

picard: 2.8.3 -> 2.8.4

authored by

Jonas Heinrich and committed by
GitHub
2090e6b6 51cedbd4

+4 -12
+4 -12
pkgs/applications/audio/picard/default.nix
··· 19 19 in 20 20 pythonPackages.buildPythonApplication rec { 21 21 pname = "picard"; 22 - version = "2.8.3"; 22 + version = "2.8.4"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "metabrainz"; 26 26 repo = pname; 27 - rev = "refs/tags/release-${version}"; 28 - sha256 = "sha256-KUHciIlwaKXvyCCkAzdh1vpe9cunDizrMUl0SoCpxgY="; 27 + rev = "release-${version}"; 28 + sha256 = "sha256-ygZkj7hZNm7XyqDEI7l49d36ZgCTwFiAuYZjlF9d5+8="; 29 29 }; 30 - 31 - patches = [ 32 - # fix for tests failing with newer mutagen, remove after >2.8.3 33 - # https://tickets.metabrainz.org/browse/PICARD-2583 34 - (fetchpatch { 35 - url = "https://github.com/metabrainz/picard/commit/76c2dff6b61140bbc7675c9e9f62a086b885e539.patch"; 36 - hash = "sha256-V1/oq1tEcb1mtqbYAA9o7mJcw16vRO0IK3GGmJkwO1Q="; 37 - }) 38 - ]; 39 30 40 31 nativeBuildInputs = [ gettext qt5.wrapQtAppsHook qt5.qtbase ] 41 32 ++ lib.optionals (pyqt5.multimediaEnabled) [ ··· 71 62 72 63 meta = with lib; { 73 64 homepage = "https://picard.musicbrainz.org/"; 65 + changelog = "https://picard.musicbrainz.org/changelog/"; 74 66 description = "The official MusicBrainz tagger"; 75 67 maintainers = with maintainers; [ ehmry ]; 76 68 license = licenses.gpl2Plus;