chromium: Enable pulseaudio by default.

If no config.pulseaudio is explicitely set to false, build with pulse
support, because even if there is no pulse server available, chromium
will fall back to using ALSA.

And we definitely want to avoid that users have to build chromium for
themselves just for the sake of having pulse support. Thanks to @devhell
for actually helping me discovering this (I for myself do always rebuild
Chromium, so I won't notice those kind of things).

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2013-07-15 01:10:20 +02:00
parent ec786d59d8
commit a01ab33e03
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -7181,7 +7181,7 @@ let
chromium = lowPrio (callPackage ../applications/networking/browsers/chromium {
channel = "stable";
gconf = gnome.GConf;
pulseSupport = config.pulseaudio or false;
pulseSupport = config.pulseaudio or true;
});
chromiumBeta = lowPrio (chromium.override { channel = "beta"; });