provide pulseaudioFull and set it as default to hardware.pulseaudio.package

This commit is contained in:
Domen Kožar 2014-08-12 12:50:42 +02:00
parent e823c123a8
commit cc8e4f6814
2 changed files with 11 additions and 5 deletions

View file

@ -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.
'';
};

View file

@ -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 { };