mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{ stdenv, fetchurl, qt4, boost, protobuf
|
|
, avahi, libcap, pkgconfig
|
|
, iceSupport ? false
|
|
, zeroc_ice ? null
|
|
}:
|
|
|
|
assert iceSupport -> zeroc_ice != null;
|
|
|
|
let
|
|
optional = stdenv.lib.optional;
|
|
optionalString = stdenv.lib.optionalString;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "murmur-" + version;
|
|
version = "1.2.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/mumble/mumble-${version}.tar.gz";
|
|
sha256 = "1bsgains6xgpgpd1b5bq682z0kswp5fcjh2cir4c4qkndya5clci";
|
|
};
|
|
|
|
patchPhase = optional iceSupport ''
|
|
sed -i 's,/usr/share/Ice/,${zeroc_ice}/,g' src/murmur/murmur.pro
|
|
'';
|
|
|
|
configurePhase = ''
|
|
qmake CONFIG+=no-client CONFIG+=no-embed-qt \
|
|
${optionalString (!iceSupport) "CONFIG+=no-ice"}
|
|
'';
|
|
|
|
buildInputs = [ qt4 boost protobuf avahi libcap pkgconfig ]
|
|
++ optional iceSupport [ zeroc_ice ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -r ./release $out/bin
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://mumble.sourceforge.net/";
|
|
description = "Low-latency, high quality voice chat software";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ viric ];
|
|
};
|
|
}
|