mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
pulseaudio: Fix logic
This commit is contained in:
parent
ea0c877858
commit
3e5a0c0034
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user