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

140 lines
3.8 KiB
Nix
Raw Normal View History

2019-09-14 10:49:38 +02:00
{ stdenv, fetchurl, fetchFromGitHub, fetchpatch, pkgconfig, mkDerivation
, qtbase, qttools, qtsvg, qmake, avahi, boost, libopus, libsndfile, protobuf, speex, libcap
2017-03-31 22:11:16 +02:00
, alsaLib, python
2015-04-26 08:32:04 +02:00
, jackSupport ? false, libjack2 ? null
, speechdSupport ? false, speechd ? null
2015-04-26 08:32:04 +02:00
, pulseSupport ? false, libpulseaudio ? null
2019-09-14 10:49:38 +02:00
, iceSupport ? false, zeroc-ice ? null
}:
2015-04-26 08:32:04 +02:00
assert jackSupport -> libjack2 != null;
assert speechdSupport -> speechd != null;
2015-04-26 08:32:04 +02:00
assert pulseSupport -> libpulseaudio != null;
2019-09-14 10:49:38 +02:00
assert iceSupport -> zeroc-ice != null;
with stdenv.lib;
let
2019-09-14 10:49:38 +02:00
generic = overrides: source: mkDerivation (source // overrides // {
name = "${overrides.type}-${source.version}";
patches = (source.patches or []) ++ optional jackSupport ./mumble-jack-support.patch;
2019-09-14 10:49:38 +02:00
nativeBuildInputs = [ pkgconfig python qmake ]
++ (overrides.nativeBuildInputs or [ ]);
2019-09-14 10:49:38 +02:00
buildInputs = [ boost protobuf avahi ]
++ (overrides.buildInputs or [ ]);
2016-04-17 01:38:29 +02:00
qmakeFlags = [
"CONFIG+=c++11"
"CONFIG+=shared"
"CONFIG+=no-g15"
"CONFIG+=packaged"
"CONFIG+=no-update"
"CONFIG+=no-embed-qt-translations"
2015-10-12 16:04:49 +02: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"
++ (overrides.configureFlags or [ ]);
2016-04-17 01:38:29 +02:00
preConfigure = ''
qmakeFlags="$qmakeFlags DEFINES+=PLUGIN_PATH=$out/lib/mumble"
2017-03-31 22:11:16 +02:00
patchShebangs scripts
'';
makeFlags = [ "release" ];
installPhase = ''
runHook preInstall
${overrides.installPhase}
# doc stuff
mkdir -p $out/share/man/man1
install -Dm644 man/mum* $out/share/man/man1/
runHook postInstall
'';
2016-01-03 01:30:32 +01:00
enableParallelBuilding = true;
meta = {
description = "Low-latency, high quality voice chat software";
2017-09-04 01:48:44 +02:00
homepage = https://mumble.info;
license = licenses.bsd3;
maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
});
client = source: generic {
type = "mumble";
2019-09-14 10:49:38 +02:00
nativeBuildInputs = [ qttools ];
buildInputs = [ libopus libsndfile speex qtsvg ]
++ optional stdenv.isLinux alsaLib
++ optional jackSupport libjack2
++ optional speechdSupport speechd
++ optional pulseSupport libpulseaudio;
configureFlags = [
"CONFIG+=no-server"
];
2016-04-23 01:21:34 +02:00
NIX_CFLAGS_COMPILE = optional speechdSupport "-I${speechd}/include/speech-dispatcher";
installPhase = ''
# bin stuff
install -Dm755 release/mumble $out/bin/mumble
install -Dm755 scripts/mumble-overlay $out/bin/mumble-overlay
# lib stuff
mkdir -p $out/lib/mumble
cp -P release/libmumble.so* $out/lib
cp -P release/libcelt* $out/lib/mumble
cp -P release/plugins/* $out/lib/mumble
# icons
install -Dm644 scripts/mumble.desktop $out/share/applications/mumble.desktop
install -Dm644 icons/mumble.svg $out/share/icons/hicolor/scalable/apps/mumble.svg
'';
} source;
2019-09-14 10:49:38 +02:00
server = source: generic {
type = "murmur";
postPatch = optional iceSupport ''
2019-09-14 10:49:38 +02:00
grep -Rl '/usr/share/Ice' . | xargs sed -i 's,/usr/share/Ice/,${zeroc-ice.dev}/share/ice/,g'
'';
configureFlags = [
"CONFIG+=no-client"
] ++ optional (!iceSupport) "CONFIG+=no-ice";
2019-09-14 10:49:38 +02:00
buildInputs = [ libcap ] ++ optional iceSupport zeroc-ice;
installPhase = ''
# bin stuff
install -Dm755 release/murmurd $out/bin/murmurd
'';
} source;
2019-09-14 10:49:38 +02:00
source = rec {
version = "1.3.0";
2016-04-23 01:22:03 +02:00
# Needs submodules
src = fetchFromGitHub {
owner = "mumble-voip";
repo = "mumble";
rev = version;
2019-09-14 10:49:38 +02:00
sha256 = "0g5ri84gg0x3crhpxlzawf9s9l4hdna6aqw6qbdpx1hjlf5k6g8k";
fetchSubmodules = true;
};
};
in {
2019-09-14 10:49:38 +02:00
mumble = client source;
murmur = server source;
}