Merge pull request #75358 from petabyteboy/feature/mumble

mumble: build with pulseaudio support on linux and add petabyteboy to maintainers
This commit is contained in:
Renaud 2019-12-14 18:39:44 +01:00 committed by GitHub
commit fc199f5277
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View file

@ -16,7 +16,8 @@ assert iceSupport -> zeroc-ice != null;
with stdenv.lib;
let
generic = overrides: source: qt5.mkDerivation (source // overrides // {
name = "${overrides.type}-${source.version}";
pname = overrides.type;
version = source.version;
patches = (source.patches or []) ++ optional jackSupport ./mumble-jack-support.patch;
@ -63,9 +64,9 @@ let
meta = {
description = "Low-latency, high quality voice chat software";
homepage = https://mumble.info;
homepage = "https://mumble.info";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ petabyteboy ];
platforms = platforms.linux;
};
});

View file

@ -20163,7 +20163,7 @@ in
avahi = avahi-compat;
jackSupport = config.mumble.jackSupport or false;
speechdSupport = config.mumble.speechdSupport or false;
pulseSupport = config.pulseaudio or false;
pulseSupport = config.pulseaudio or stdenv.isLinux;
}).mumble;
mumble_overlay = callPackage ../applications/networking/mumble/overlay.nix {