Merge pull request #250414 from r-ryantm/auto-update/mympd

mympd: 10.3.3 -> 11.0.3
This commit is contained in:
Doron Behar 2023-08-21 09:07:56 +03:00 committed by GitHub
commit 4028a28ac5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,13 +16,13 @@
stdenv.mkDerivation rec {
pname = "mympd";
version = "10.3.3";
version = "11.0.3";
src = fetchFromGitHub {
owner = "jcorporation";
repo = "myMPD";
rev = "v${version}";
sha256 = "sha256-LqIaRFAXB3XMidC1Dypax/ucayot/IJPAvPwzHQeH9k=";
sha256 = "sha256-pDM9igAX1iUi/yC8/Jqobaixkw6klEVcd0sAn0Ufdjk=";
};
nativeBuildInputs = [
@ -45,18 +45,17 @@ stdenv.mkDerivation rec {
];
cmakeFlags = [
"-DENABLE_LUA=ON"
# Otherwise, it tries to parse $out/etc/mympd.conf on startup.
"-DCMAKE_INSTALL_SYSCONFDIR=/etc"
# similarly here
"-DCMAKE_INSTALL_LOCALSTATEDIR=/var/lib/mympd"
];
hardeningDisable = [
# See https://github.com/jcorporation/myMPD/issues/315
"strictoverflow"
# causes redefinition of _FORTIFY_SOURCE
"fortify3"
];
# 5 tests out of 23 fail, probably due to the sandbox...
doCheck = false;
meta = {
homepage = "https://jcorporation.github.io/myMPD";