summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2015-12-04 16:09:10 +0000
committerJan Malakhovski <oxij@oxij.org>2015-12-04 17:46:15 +0000
commit8eb8478e62a4b04eae75f4e68dde806e74237401 (patch)
tree376da8e44a50a716015838f3b596476a8a7d2010 /pkgs
parent889944af2c07da2b9f4dbef0310b325de4f70567 (diff)
downloadnixpkgs-8eb8478e62a4b04eae75f4e68dde806e74237401.tar
nixpkgs-8eb8478e62a4b04eae75f4e68dde806e74237401.tar.gz
nixpkgs-8eb8478e62a4b04eae75f4e68dde806e74237401.tar.bz2
nixpkgs-8eb8478e62a4b04eae75f4e68dde806e74237401.tar.lz
nixpkgs-8eb8478e62a4b04eae75f4e68dde806e74237401.tar.xz
nixpkgs-8eb8478e62a4b04eae75f4e68dde806e74237401.tar.zst
nixpkgs-8eb8478e62a4b04eae75f4e68dde806e74237401.zip
mpd: set clientSupport to true by default
Standard "satellite" configuration from the docs will not work without this.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/mpd/default.nix2
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/mpd/default.nix b/pkgs/servers/mpd/default.nix
index bf968ae4b39..6c630d9237c 100644
--- a/pkgs/servers/mpd/default.nix
+++ b/pkgs/servers/mpd/default.nix
@@ -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
 }:
 
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index b04f43cd508..ba269134278 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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;