Mumble builds

svn path=/nixpkgs/trunk/; revision=25927
This commit is contained in:
Lluís Batlle i Rossell 2011-02-12 20:31:25 +00:00
parent ed85acac61
commit af7a77aca6

View File

@ -1,8 +1,6 @@
{ stdenv, fetchurl, qt4, libvorbis, boost, speechd, protobuf, libsndfile, { stdenv, fetchurl, qt4, libvorbis, boost, speechd, protobuf, libsndfile,
avahi }: avahi, dbus, libcap }:
throw "It does not build still. It wants a g15daemon header file or so"
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "mumble-" + version; name = "mumble-" + version;
version = "1.2.2"; version = "1.2.2";
@ -17,9 +15,13 @@ stdenv.mkDerivation rec {
sed -e /qt_ja_JP.qm/d -i src/mumble/mumble_qt.qrc src/mumble11x/mumble_qt.qrc sed -e /qt_ja_JP.qm/d -i src/mumble/mumble_qt.qrc src/mumble11x/mumble_qt.qrc
''; '';
configurePhase = "qmake PREFIX=$out"; configurePhase = ''
qmake PREFIX=$out CONFIG+=no-g15 CONFIG+=no-update \
CONFIG+=no-embed-qt-translations CONFIG+=no-ice
'';
buildInputs = [ qt4 libvorbis boost speechd protobuf libsndfile avahi ]; buildInputs = [ qt4 libvorbis boost speechd protobuf libsndfile avahi dbus
libcap ];
meta = { meta = {
homepage = http://mumble.sourceforge.net/; homepage = http://mumble.sourceforge.net/;