Merge pull request #296865 from pks-t/pks-waybar-fix-build-without-cavasupport

waybar: fix build without cava support

authored by Vlad M and committed by GitHub 68387dda c591acdb

+3 -1
+3 -1
pkgs/applications/misc/waybar/default.nix
··· 51 51 , mpdSupport ? true 52 52 , mprisSupport ? stdenv.isLinux 53 53 , nlSupport ? true 54 + , pipewireSupport ? true 54 55 , pulseSupport ? true 55 56 , rfkillSupport ? true 56 57 , runTests ? true ··· 122 123 fftw 123 124 iniparser 124 125 ncurses 125 - pipewire 126 126 portaudio 127 127 ] 128 128 ++ lib.optional evdevSupport libevdev ··· 139 139 ++ lib.optional udevSupport udev 140 140 ++ lib.optional upowerSupport upower 141 141 ++ lib.optional wireplumberSupport wireplumber 142 + ++ lib.optional (cavaSupport || pipewireSupport) pipewire 142 143 ++ lib.optional (!stdenv.isLinux) libinotify-kqueue; 143 144 144 145 nativeCheckInputs = [ catch2_3 ]; ··· 154 155 "man-pages" = true; 155 156 "mpd" = mpdSupport; 156 157 "mpris" = mprisSupport; 158 + "pipewire" = pipewireSupport; 157 159 "pulseaudio" = pulseSupport; 158 160 "rfkill" = rfkillSupport; 159 161 "sndio" = sndioSupport;