about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/mumble/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/applications/networking/mumble/default.nix b/pkgs/applications/networking/mumble/default.nix
index 1e9fc99c29ddc..8660d94a9e0bc 100644
--- a/pkgs/applications/networking/mumble/default.nix
+++ b/pkgs/applications/networking/mumble/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, fetchgit, pkgconfig
-, qt4, qt5, avahi, boost, libopus, celt, libsndfile, protobuf, speex, libcap
+, qt4, qt5, avahi, boost, libopus, libsndfile, protobuf, speex, libcap
 , alsaLib
 , jackSupport ? false, libjack2 ? null
 , speechdSupport ? false, speechd ? null
@@ -32,7 +32,7 @@ let
       "CONFIG+=packaged"
       "CONFIG+=no-update"
       "CONFIG+=no-embed-qt-translations"
-      "CONFIG+=no-bundled-celt"
+      "CONFIG+=bundled-celt"
       "CONFIG+=no-bundled-opus"
       "CONFIG+=no-bundled-speex"
     ] ++ optional (!speechdSupport) "CONFIG+=no-speechd"
@@ -65,10 +65,9 @@ let
 
   client = source: generic {
     type = "mumble";
-    NIX_CFLAGS_COMPILE = [ "-I${celt}/include/celt" ];
 
     nativeBuildInputs = optional (source.qtVersion == 5) qt5.tools;
-    buildInputs = [ libopus celt libsndfile speex ]
+    buildInputs = [ libopus libsndfile speex ]
       ++ optional (source.qtVersion == 5) qt5.svg
       ++ optional stdenv.isLinux alsaLib
       ++ optional jackSupport libjack2