mumble: Combine into a generic derivation
Also add a git version since 1.3.0 supports qt5 as well as a host of new features.
This commit is contained in:
parent
2702f01ee9
commit
2f88045360
@ -1,71 +1,154 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig
|
{ stdenv, fetchurl, fetchgit, pkgconfig
|
||||||
, avahi, boost, libopus, celt, libsndfile, protobuf, qt4, speex
|
, qt4, qt5, avahi, boost, libopus, celt, libsndfile, protobuf, speex, libcap
|
||||||
|
, alsaLib
|
||||||
, jackSupport ? false, libjack2 ? null
|
, jackSupport ? false, libjack2 ? null
|
||||||
, speechdSupport ? false, speechd ? null
|
, speechdSupport ? false, speechd ? null
|
||||||
, pulseSupport ? false, libpulseaudio ? null
|
, pulseSupport ? false, libpulseaudio ? null
|
||||||
|
, iceSupport ? false, zeroc_ice ? null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert jackSupport -> libjack2 != null;
|
assert jackSupport -> libjack2 != null;
|
||||||
assert speechdSupport -> speechd != null;
|
assert speechdSupport -> speechd != null;
|
||||||
assert pulseSupport -> libpulseaudio != null;
|
assert pulseSupport -> libpulseaudio != null;
|
||||||
|
assert iceSupport -> zeroc_ice != null;
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
let
|
let
|
||||||
optional = stdenv.lib.optional;
|
generic = overrides: source: stdenv.mkDerivation (source // overrides // {
|
||||||
optionalString = stdenv.lib.optionalString;
|
name = "${overrides.type}-${source.version}";
|
||||||
in
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "mumble-${version}";
|
|
||||||
version = "1.2.10";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://github.com/mumble-voip/mumble/releases/download/${version}/${name}.tar.gz";
|
|
||||||
sha256 = "012vm0xf84x13414jlsx964c5a1nwnbn41jnspkciajlxxipldn6";
|
|
||||||
};
|
|
||||||
|
|
||||||
patches = optional jackSupport ./mumble-jack-support.patch;
|
patches = optional jackSupport ./mumble-jack-support.patch;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig ]
|
||||||
|
++ { qt4 = [ qt4 ]; qt5 = [ qt5.base ]; }."qt${toString source.qtVersion}"
|
||||||
|
++ (overrides.nativeBuildInputs or [ ]);
|
||||||
|
buildInputs = [ boost protobuf avahi ]
|
||||||
|
++ { qt4 = [ qt4 ]; qt5 = [ qt5.base ]; }."qt${toString source.qtVersion}"
|
||||||
|
++ (overrides.buildInputs or [ ]);
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"CONFIG+=shared"
|
"CONFIG+=shared"
|
||||||
"CONFIG+=no-g15"
|
"CONFIG+=no-g15"
|
||||||
"CONFIG+=packaged"
|
"CONFIG+=packaged"
|
||||||
"CONFIG+=no-update"
|
"CONFIG+=no-update"
|
||||||
"CONFIG+=no-server"
|
|
||||||
"CONFIG+=no-embed-qt-translations"
|
"CONFIG+=no-embed-qt-translations"
|
||||||
"CONFIG+=no-bundled-celt"
|
"CONFIG+=no-bundled-celt"
|
||||||
"CONFIG+=no-bundled-opus"
|
"CONFIG+=no-bundled-opus"
|
||||||
"CONFIG+=no-bundled-speex"
|
"CONFIG+=no-bundled-speex"
|
||||||
] ++ optional (!speechdSupport) "CONFIG+=no-speechd"
|
] ++ optional (!speechdSupport) "CONFIG+=no-speechd"
|
||||||
++ optional jackSupport "CONFIG+=no-oss CONFIG+=no-alsa CONFIG+=jackaudio";
|
++ optional jackSupport "CONFIG+=no-oss CONFIG+=no-alsa CONFIG+=jackaudio"
|
||||||
|
++ (overrides.configureFlags or [ ]);
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
qmake $configureFlags
|
qmake $configureFlags DEFINES+="PLUGIN_PATH=$out/lib"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
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 "");
|
||||||
|
|
||||||
|
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";
|
||||||
NIX_CFLAGS_COMPILE = [ "-I${celt}/include/celt" ];
|
NIX_CFLAGS_COMPILE = [ "-I${celt}/include/celt" ];
|
||||||
|
|
||||||
buildInputs = [ avahi boost libopus celt libsndfile protobuf qt4 speex ]
|
nativeBuildInputs = optional (source.qtVersion == 5) qt5.tools;
|
||||||
|
buildInputs = [ libopus celt libsndfile speex ]
|
||||||
|
++ optional (source.qtVersion == 5) qt5.svg
|
||||||
|
++ optional stdenv.isLinux alsaLib
|
||||||
++ optional jackSupport libjack2
|
++ optional jackSupport libjack2
|
||||||
++ optional speechdSupport speechd
|
++ optional speechdSupport speechd
|
||||||
++ optional pulseSupport libpulseaudio;
|
++ optional pulseSupport libpulseaudio;
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"CONFIG+=no-server"
|
||||||
|
];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out
|
cp scripts/mumble-overlay $out/bin
|
||||||
cp -r ./release $out/bin
|
sed -i "s,/usr/lib,$out/lib,g" $out/bin/mumble-overlay
|
||||||
|
|
||||||
mkdir -p $out/share/applications
|
mkdir -p $out/share/applications
|
||||||
cp scripts/mumble.desktop $out/share/applications
|
cp scripts/mumble.desktop $out/share/applications
|
||||||
|
|
||||||
mkdir -p $out/share/icons
|
mkdir -p $out/share/icons{,/hicolor/scalable/apps}
|
||||||
cp icons/mumble.svg $out/share/icons
|
cp icons/mumble.svg $out/share/icons
|
||||||
|
ln -s $out/share/icon/mumble.svg $out/share/icons/hicolor/scalable/apps
|
||||||
|
'';
|
||||||
|
} source;
|
||||||
|
|
||||||
|
server = generic {
|
||||||
|
type = "murmur";
|
||||||
|
|
||||||
|
postPatch = optional iceSupport ''
|
||||||
|
sed -i 's,/usr/share/Ice/,${zeroc_ice}/,g' src/murmur/murmur.pro
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
configureFlags = [
|
||||||
description = "Low-latency, high quality voice chat software";
|
"CONFIG+=no-client"
|
||||||
homepage = "http://mumble.sourceforge.net/";
|
];
|
||||||
license = licenses.bsd3;
|
|
||||||
maintainers = with maintainers; [ viric jgeerds ];
|
buildInputs = [ libcap ] ++ optional iceSupport [ zeroc_ice ];
|
||||||
platforms = platforms.linux;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
stableSource = rec {
|
||||||
|
version = "1.2.10";
|
||||||
|
qtVersion = 4;
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/mumble-voip/mumble/releases/download/${version}/mumble-${version}.tar.gz";
|
||||||
|
sha256 = "012vm0xf84x13414jlsx964c5a1nwnbn41jnspkciajlxxipldn6";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
gitSource = rec {
|
||||||
|
version = "1.3.0-git-2015-09-27";
|
||||||
|
qtVersion = 5;
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/mumble-voip/mumble";
|
||||||
|
rev = "13e494c60beb20748eeb8be126b27e1226d168c8";
|
||||||
|
sha256 = "1vihassis5i7hyljbb8qjihjj4y80n5l380x5dl0nwb55j2mylhg";
|
||||||
|
};
|
||||||
|
|
||||||
|
# TODO: Remove fetchgit as it requires git
|
||||||
|
/*src = fetchFromGitHub {
|
||||||
|
owner = "mumble-voip";
|
||||||
|
repo = "mumble";
|
||||||
|
rev = "13e494c60beb20748eeb8be126b27e1226d168c8";
|
||||||
|
sha256 = "024my6wzahq16w7fjwrbksgnq98z4jjbdyy615kfyd9yk2qnpl80";
|
||||||
|
};
|
||||||
|
|
||||||
|
theme = fetchFromGitHub {
|
||||||
|
owner = "mumble-voip";
|
||||||
|
repo = "mumble-theme";
|
||||||
|
rev = "16b61d958f131ca85ab0f601d7331601b63d8f30";
|
||||||
|
sha256 = "0rbh825mwlh38j6nv2sran2clkiwvzj430mhvkdvzli9ysjxgsl3";
|
||||||
|
};
|
||||||
|
|
||||||
|
prePatch = ''
|
||||||
|
rmdir themes/Mumble
|
||||||
|
ln -s ${theme} themes/Mumble
|
||||||
|
'';*/
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
mumble = client stableSource;
|
||||||
|
mumble_git = client gitSource;
|
||||||
|
murmur = server stableSource;
|
||||||
|
murmur_git = server gitSource;
|
||||||
}
|
}
|
||||||
|
@ -1,42 +0,0 @@
|
|||||||
{ stdenv, qt4, boost, protobuf, mumble
|
|
||||||
, 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}";
|
|
||||||
|
|
||||||
inherit (mumble) version src;
|
|
||||||
|
|
||||||
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 ];
|
|
||||||
};
|
|
||||||
}
|
|
@ -12163,22 +12163,17 @@ let
|
|||||||
inherit (gnome) ORBit2 libbonobo libgnomeui GConf;
|
inherit (gnome) ORBit2 libbonobo libgnomeui GConf;
|
||||||
};
|
};
|
||||||
|
|
||||||
mumble = callPackage ../applications/networking/mumble {
|
inherit (callPackages ../applications/networking/mumble {
|
||||||
avahi = avahi.override {
|
avahi = avahi.override {
|
||||||
withLibdnssdCompat = true;
|
withLibdnssdCompat = true;
|
||||||
};
|
};
|
||||||
|
qt5 = qt54; # Mumble is not compatible with qt55 yet
|
||||||
celt = celt_0_7;
|
celt = celt_0_7;
|
||||||
jackSupport = config.mumble.jackSupport or false;
|
jackSupport = config.mumble.jackSupport or false;
|
||||||
speechdSupport = config.mumble.speechdSupport or false;
|
speechdSupport = config.mumble.speechdSupport or false;
|
||||||
pulseSupport = config.pulseaudio or false;
|
pulseSupport = config.pulseaudio or false;
|
||||||
};
|
|
||||||
|
|
||||||
murmur = callPackage ../applications/networking/mumble/murmur.nix {
|
|
||||||
avahi = avahi.override {
|
|
||||||
withLibdnssdCompat = true;
|
|
||||||
};
|
|
||||||
iceSupport = config.murmur.iceSupport or true;
|
iceSupport = config.murmur.iceSupport or true;
|
||||||
};
|
}) mumble mumble_git murmur murmur_git;
|
||||||
|
|
||||||
musescore = qt5Libs.callPackage ../applications/audio/musescore { };
|
musescore = qt5Libs.callPackage ../applications/audio/musescore { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user