pulseaudio: Add a flag for supporting 32-bit

This commit is contained in:
William A. Kennington III 2015-06-10 11:48:52 -07:00
parent a398088ec6
commit aece1407d5

View File

@ -12,7 +12,7 @@ let
# Forces 32bit pulseaudio and alsaPlugins to be built/supported for apps
# using 32bit alsa on 64bit linux.
enable32BitAlsaPlugins = stdenv.isx86_64 && (pkgs_i686.alsaLib != null && pkgs_i686.libpulseaudio != null);
enable32BitAlsaPlugins = cfg.support32Bit && stdenv.isx86_64 && (pkgs_i686.alsaLib != null && pkgs_i686.libpulseaudio != null);
ids = config.ids;
@ -78,6 +78,12 @@ in {
'';
};
support32Bit = mkOption {
type = types.bool;
default = false;
description = "no";
};
configFile = mkOption {
type = types.path;
description = ''