mpd: 0.23.16 -> 0.23.17

mpd has fixed a bug with upstream yajl in 0aeda01ba6

We use a fork of yajl which isn't affected by this issue because of 349e55e657

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu
2025-03-07 20:42:49 +01:00
parent 6415f78708
commit 3e14bab7b4

View File

@@ -2,6 +2,7 @@
lib,
stdenv,
fetchFromGitHub,
fetchpatch2,
meson,
ninja,
pkg-config,
@@ -201,15 +202,26 @@ let
in
stdenv.mkDerivation rec {
pname = "mpd";
version = "0.23.16";
version = "0.23.17";
src = fetchFromGitHub {
owner = "MusicPlayerDaemon";
repo = "MPD";
rev = "v${version}";
sha256 = "sha256-0To+V+4xLjymGpRSpsyE/Une5uUpCEiAg+d041guPA0=";
sha256 = "sha256-1+eVLvwMp6mR38y39wV73rhPA998ip7clyyKcJ008z0=";
};
patches = [
# Revert of https://github.com/MusicPlayerDaemon/MPD/commit/0aeda01ba6d22a8d9fc583faa67ffc6473869a43
# We use a yajl fork that fixed this issue in the pkg-config manifest
(fetchpatch2 {
name = "revert-yajl-include-fix.patch";
url = "https://github.com/MusicPlayerDaemon/MPD/commit/0aeda01ba6d22a8d9fc583faa67ffc6473869a43.diff";
hash = "sha256-p/sYvWpr0GTw8gjt+W9FQysadOK/QOUp81ykTI50UYg=";
revert = true;
})
];
buildInputs =
[
glib