summary refs log tree commit diff
path: root/pkgs/applications/networking/mumble
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-02-10 19:23:27 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-02-10 19:23:27 +0000
commit951b65cf9c6fdc7273beaebb51c70e18b0fbdb08 (patch)
tree4993c7229c189c86176b2c08208493a00786359e /pkgs/applications/networking/mumble
parent62759cd5505cb72fd97c8888d558e8d2e5c8c59b (diff)
downloadnixpkgs-951b65cf9c6fdc7273beaebb51c70e18b0fbdb08.tar
nixpkgs-951b65cf9c6fdc7273beaebb51c70e18b0fbdb08.tar.gz
nixpkgs-951b65cf9c6fdc7273beaebb51c70e18b0fbdb08.tar.bz2
nixpkgs-951b65cf9c6fdc7273beaebb51c70e18b0fbdb08.tar.lz
nixpkgs-951b65cf9c6fdc7273beaebb51c70e18b0fbdb08.tar.xz
nixpkgs-951b65cf9c6fdc7273beaebb51c70e18b0fbdb08.tar.zst
nixpkgs-951b65cf9c6fdc7273beaebb51c70e18b0fbdb08.zip
Trying to add mumble. It still does not build.
svn path=/nixpkgs/trunk/; revision=25890
Diffstat (limited to 'pkgs/applications/networking/mumble')
-rw-r--r--pkgs/applications/networking/mumble/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/applications/networking/mumble/default.nix b/pkgs/applications/networking/mumble/default.nix
new file mode 100644
index 00000000000..c29b0ec7446
--- /dev/null
+++ b/pkgs/applications/networking/mumble/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchurl, qt4, libvorbis, boost, speechd, protobuf, libsndfile,
+ avahi }:
+        
+throw "It does not build still. It wants dns_sd.h"
+
+stdenv.mkDerivation rec {
+  name = "mumble-" + version;
+  version = "1.2.2";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/mumble/${name}.tar.gz";
+    sha256 = "1s4vlkdfmyzx7h3i4060q0sf2xywl9sm6dpjhaa150blbcylwmic";
+  };
+
+  patchPhase = ''
+    sed -e s/qt_ja_JP.qm// -i src/mumble/mumble.pro src/mumble11x/mumble11x.pro
+    sed -e /qt_ja_JP.qm/d -i src/mumble/mumble_qt.qrc src/mumble11x/mumble_qt.qrc
+  '';
+
+  configurePhase = "qmake PREFIX=$out";
+
+  buildInputs = [ qt4 libvorbis boost speechd protobuf libsndfile avahi ];
+
+  meta = { 
+    homepage = http://mumble.sourceforge.net/;
+    description = "Low-latency, high quality voice chat software";
+    license = "BSD";
+  };
+}