From b7b79e70006d5604a5d0a406129a57cf6dc9f4a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 29 Sep 2013 21:17:26 +0200 Subject: [PATCH] xbmc: enable webserver --- pkgs/applications/video/xbmc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/xbmc/default.nix b/pkgs/applications/video/xbmc/default.nix index d3b3556baf4d..59537c7dce02 100644 --- a/pkgs/applications/video/xbmc/default.nix +++ b/pkgs/applications/video/xbmc/default.nix @@ -19,6 +19,7 @@ , udev, udevSupport ? true , libusb ? null, usbSupport ? false , samba ? null, sambaSupport ? true +, libmicrohttpd # TODO: would be nice to have nfsSupport (needs libnfs library) # TODO: librtmp , libvdpau ? null, vdpauSupport ? true @@ -43,7 +44,7 @@ stdenv.mkDerivation rec { buildInputs = [ makeWrapper pkgconfig cmake gnumake yasm python - boost + boost libmicrohttpd gettext pcre yajl fribidi openssl gperf tinyxml2 taglib libssh swig jre libX11 xproto inputproto @@ -75,7 +76,6 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-external-libraries" - "--disable-webserver" ] ++ lib.optional (! sambaSupport) "--disable-samba" ++ lib.optional vdpauSupport "--enable-vdpau"