nixpkgs/pkgs/applications/networking/mumble/default.nix

144 lines
4.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchgit, pkgconfig
2016-04-16 23:38:29 +00:00
, qt4, qmake4Hook, qt5, avahi, boost, libopus, libsndfile, protobuf, speex, libcap
2017-03-31 20:11:16 +00:00
, alsaLib, python
2015-04-26 06:32:04 +00:00
, jackSupport ? false, libjack2 ? null
, speechdSupport ? false, speechd ? null
2015-04-26 06:32:04 +00:00
, pulseSupport ? false, libpulseaudio ? null
, iceSupport ? false, zeroc_ice ? null
}:
2015-04-26 06:32:04 +00:00
assert jackSupport -> libjack2 != null;
assert speechdSupport -> speechd != null;
2015-04-26 06:32:04 +00:00
assert pulseSupport -> libpulseaudio != null;
assert iceSupport -> zeroc_ice != null;
with stdenv.lib;
let
generic = overrides: source: stdenv.mkDerivation (source // overrides // {
name = "${overrides.type}-${source.version}";
patches = optional jackSupport ./mumble-jack-support.patch;
2017-03-31 20:11:16 +00:00
nativeBuildInputs = [ pkgconfig python ]
2016-04-16 23:38:29 +00:00
++ { qt4 = [ qmake4Hook ]; qt5 = [ qt5.qmakeHook ]; }."qt${toString source.qtVersion}"
++ (overrides.nativeBuildInputs or [ ]);
buildInputs = [ boost protobuf avahi ]
2015-11-11 04:08:58 +00:00
++ { qt4 = [ qt4 ]; qt5 = [ qt5.qtbase ]; }."qt${toString source.qtVersion}"
++ (overrides.buildInputs or [ ]);
2016-04-16 23:38:29 +00:00
qmakeFlags = [
"CONFIG+=shared"
"CONFIG+=no-g15"
"CONFIG+=packaged"
"CONFIG+=no-update"
"CONFIG+=no-embed-qt-translations"
2015-10-12 14:04:49 +00:00
"CONFIG+=bundled-celt"
"CONFIG+=no-bundled-opus"
"CONFIG+=no-bundled-speex"
] ++ optional (!speechdSupport) "CONFIG+=no-speechd"
++ optional jackSupport "CONFIG+=no-oss CONFIG+=no-alsa CONFIG+=jackaudio"
2016-09-25 09:24:43 +00:00
++ optional (!iceSupport) "CONFIG+=no-ice"
++ (overrides.configureFlags or [ ]);
2016-04-16 23:38:29 +00:00
preConfigure = ''
qmakeFlags="$qmakeFlags DEFINES+=PLUGIN_PATH=$out/lib"
2017-03-31 20:11:16 +00:00
patchShebangs scripts
'';
makeFlags = [ "release" ];
installPhase = ''
mkdir -p $out/{lib,bin}
find release -type f -not -name \*.\* -exec cp {} $out/bin \;
find release -type f -name \*.\* -exec cp {} $out/lib \;
mkdir -p $out/share/man/man1
cp man/mum* $out/share/man/man1
'' + (overrides.installPhase or "");
2016-01-03 00:30:32 +00:00
enableParallelBuilding = true;
meta = {
description = "Low-latency, high quality voice chat software";
homepage = "http://mumble.sourceforge.net/";
license = licenses.bsd3;
maintainers = with maintainers; [ viric jgeerds wkennington ];
platforms = platforms.linux;
};
});
client = source: generic {
type = "mumble";
nativeBuildInputs = optionals (source.qtVersion == 5) [ qt5.qttools qt5.makeQtWrapper ];
2015-10-12 14:04:49 +00:00
buildInputs = [ libopus libsndfile speex ]
2015-11-11 04:08:58 +00:00
++ optional (source.qtVersion == 5) qt5.qtsvg
++ optional stdenv.isLinux alsaLib
++ optional jackSupport libjack2
++ optional speechdSupport speechd
++ optional pulseSupport libpulseaudio;
configureFlags = [
"CONFIG+=no-server"
];
2016-04-22 23:21:34 +00:00
NIX_CFLAGS_COMPILE = optional speechdSupport "-I${speechd}/include/speech-dispatcher";
installPhase = ''
mkdir -p $out/share/applications
cp scripts/mumble.desktop $out/share/applications
mkdir -p $out/share/icons{,/hicolor/scalable/apps}
cp icons/mumble.svg $out/share/icons
ln -s $out/share/icon/mumble.svg $out/share/icons/hicolor/scalable/apps
${optionalString (source.qtVersion == 5) ''
wrapQtProgram $out/bin/mumble
''}
'';
} source;
server = generic {
type = "murmur";
postPatch = optional iceSupport ''
grep -Rl '/usr/share/Ice' . | xargs sed -i 's,/usr/share/Ice/,${zeroc_ice}/,g'
'';
configureFlags = [
"CONFIG+=no-client"
];
buildInputs = [ libcap ] ++ optional iceSupport zeroc_ice;
};
stableSource = rec {
2017-02-23 22:28:06 +00:00
version = "1.2.19";
qtVersion = 4;
src = fetchurl {
url = "https://github.com/mumble-voip/mumble/releases/download/${version}/mumble-${version}.tar.gz";
2017-02-23 22:28:06 +00:00
sha256 = "1s60vaici3v034jzzi20x23hsj6mkjlc0glipjq4hffrg9qgnizh";
};
};
gitSource = rec {
version = "2017-04-16";
qtVersion = 5;
2016-04-22 23:22:03 +00:00
# Needs submodules
src = fetchgit {
url = "https://github.com/mumble-voip/mumble";
rev = "eb63d0b14a7bc19bfdf34f80921798f0a67cdedf";
sha256 = "1nirbx0fnvi1nl6s5hrm4b0v7s2i22yshkmqnfjhxyr0y272s7lh";
};
};
in {
mumble = client stableSource;
mumble_git = client gitSource;
murmur = server stableSource;
2017-03-30 13:42:26 +00:00
murmur_git = (server gitSource).overrideAttrs (old: {
meta = old.meta // { broken = iceSupport; };
2017-03-30 13:42:26 +00:00
});
}