mpd: set clientSupport to true by default

Standard "satellite" configuration from the docs will not work without this.
This commit is contained in:
Jan Malakhovski 2015-12-04 16:09:10 +00:00
parent 889944af2c
commit 8eb8478e62
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@
, jackSupport ? true, libjack2
, gmeSupport ? true, game-music-emu
, icuSupport ? true, icu
, clientSupport ? false, mpd_clientlib
, clientSupport ? true, mpd_clientlib
, opusSupport ? true, libopus
}:

View file

@ -9248,7 +9248,7 @@ let
mpd = callPackage ../servers/mpd {
aacSupport = config.mpd.aacSupport or true;
clientSupport = config.mpd.clientSupport or false;
clientSupport = config.mpd.clientSupport or true;
ffmpegSupport = config.mpd.ffmpegSupport or true;
opusSupport = config.mpd.opusSupport or true;