mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
Merge pull request #5698 from abbradar/mumble-pa
mumble: add pulseaudio support
This commit is contained in:
commit
0a80cf9e51
@ -4,10 +4,13 @@
|
||||
, jack2 ? null
|
||||
, speechdSupport ? false
|
||||
, speechd ? null
|
||||
, pulseSupport ? false
|
||||
, pulseaudio ? null
|
||||
}:
|
||||
|
||||
assert jackSupport -> jack2 != null;
|
||||
assert speechdSupport -> speechd != null;
|
||||
assert pulseSupport -> pulseaudio != null;
|
||||
|
||||
let
|
||||
optional = stdenv.lib.optional;
|
||||
@ -37,7 +40,8 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [ qt4 boost protobuf libsndfile speex
|
||||
libopus avahi pkgconfig ]
|
||||
++ (optional jackSupport jack2)
|
||||
++ (optional speechdSupport speechd);
|
||||
++ (optional speechdSupport speechd)
|
||||
++ (optional pulseSupport pulseaudio);
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
|
@ -10507,6 +10507,7 @@ let
|
||||
};
|
||||
jackSupport = config.mumble.jackSupport or false;
|
||||
speechdSupport = config.mumble.speechdSupport or false;
|
||||
pulseSupport = config.pulseaudio or false;
|
||||
};
|
||||
|
||||
murmur = callPackage ../applications/networking/mumble/murmur.nix {
|
||||
|
Loading…
Reference in New Issue
Block a user