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:
commit
fc199f5277
2 changed files with 5 additions and 4 deletions
|
@ -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;
|
||||
};
|
||||
});
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue