summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authornyanloutre <paul@nyanlout.re>2019-04-22 23:48:14 +0200
committernyanloutre <paul@nyanlout.re>2019-04-22 23:57:37 +0200
commit4057880a854265690901829905654f0949a8b56e (patch)
tree9449d1057fa0a004fd3510cb1fffb544e8481d75 /pkgs/applications
parentd26027792812fbfad4d0f451b5f47fdabf7fdeb9 (diff)
downloadnixpkgs-4057880a854265690901829905654f0949a8b56e.tar
nixpkgs-4057880a854265690901829905654f0949a8b56e.tar.gz
nixpkgs-4057880a854265690901829905654f0949a8b56e.tar.bz2
nixpkgs-4057880a854265690901829905654f0949a8b56e.tar.lz
nixpkgs-4057880a854265690901829905654f0949a8b56e.tar.xz
nixpkgs-4057880a854265690901829905654f0949a8b56e.tar.zst
nixpkgs-4057880a854265690901829905654f0949a8b56e.zip
mumble: incompatible protobuf version
https://github.com/mumble-voip/mumble/issues/3617
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/mumble/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/networking/mumble/default.nix b/pkgs/applications/networking/mumble/default.nix
index f589a149d85..32149368230 100644
--- a/pkgs/applications/networking/mumble/default.nix
+++ b/pkgs/applications/networking/mumble/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, fetchFromGitHub, fetchpatch, makeWrapper, pkgconfig
-, qt4, qmake4Hook, qt5, avahi, boost, libopus, libsndfile, protobuf, speex, libcap
+, qt4, qmake4Hook, qt5, avahi, boost, libopus, libsndfile, protobuf3_6, speex, libcap
 , alsaLib, python
 , jackSupport ? false, libjack2 ? null
 , speechdSupport ? false, speechd ? null
@@ -22,7 +22,10 @@ let
     nativeBuildInputs = [ pkgconfig python ]
       ++ { qt4 = [ qmake4Hook ]; qt5 = [ qt5.qmake ]; }."qt${toString source.qtVersion}"
       ++ (overrides.nativeBuildInputs or [ ]);
-    buildInputs = [ boost protobuf avahi ]
+
+    # protobuf is freezed to 3.6 because of this bug: https://github.com/mumble-voip/mumble/issues/3617
+    # this could be reverted to the latest version in a future release of mumble as it is already fixed in master
+    buildInputs = [ boost protobuf3_6 avahi ]
       ++ { qt4 = [ qt4 ]; qt5 = [ qt5.qtbase ]; }."qt${toString source.qtVersion}"
       ++ (overrides.buildInputs or [ ]);