pulseaudio: Fix logic

This commit is contained in:
William A. Kennington III 2015-05-11 14:59:05 -07:00
parent ea0c877858
commit 3e5a0c0034

View File

@ -39,7 +39,7 @@ let
optAlsaLib = if libOnly then null else shouldUsePkg alsaLib;
optEsound = if libOnly then null else shouldUsePkg esound;
optGlib = if libOnly then null else shouldUsePkg glib;
optGtk3 = if libOnly || hasXlibs then null else shouldUsePkg gtk3;
optGtk3 = if libOnly || !hasXlibs then null else shouldUsePkg gtk3;
optGconf = if libOnly then null else shouldUsePkg gconf;
optAvahi = if libOnly then null else shouldUsePkg avahi;
optLibjack2 = if libOnly then null else shouldUsePkg libjack2;