mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #11462 from oxij/mpd-client-support
mpd: set clientSupport to true by default
This commit is contained in:
commit
a07cbec43c
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
}:
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue