mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
provide pulseaudioFull and set it as default to hardware.pulseaudio.package
This commit is contained in:
parent
e823c123a8
commit
cc8e4f6814
2 changed files with 11 additions and 5 deletions
|
@ -80,12 +80,12 @@ in {
|
|||
|
||||
package = mkOption {
|
||||
type = types.package;
|
||||
default = pulseaudio;
|
||||
example = literalExample "pulseaudio.override { jackaudioSupport = true; }";
|
||||
default = pulseaudioFull;
|
||||
example = literalExample "pulseaudioFull";
|
||||
description = ''
|
||||
The PulseAudio derivation to use. This can be used to enable
|
||||
features (such as JACK support) that are not enabled in the
|
||||
default PulseAudio in Nixpkgs.
|
||||
The PulseAudio derivation to use. This can be used to disable
|
||||
features (such as JACK support, Bluetooth) that are enabled in the
|
||||
pulseaudioFull package in Nixpkgs.
|
||||
'';
|
||||
};
|
||||
|
||||
|
|
|
@ -6845,6 +6845,12 @@ let
|
|||
bluez = null;
|
||||
avahi = null;
|
||||
};
|
||||
pulseaudioFull = pulseaudio.override {
|
||||
bluez = bluez5;
|
||||
avahi = avahi;
|
||||
jackaudioSupport = true;
|
||||
x11Support = true;
|
||||
};
|
||||
|
||||
tomcat_connectors = callPackage ../servers/http/apache-modules/tomcat-connectors { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue