Merge pull request #297158 from andresilva/waybar-wireplumber-0.4

waybar: build against wireplumber-0.4

authored by Adam C. Stephens and committed by GitHub 64eb8fcf 8c7a594e

+13 -1
+13 -1
pkgs/applications/misc/waybar/default.nix
··· 2 2 , stdenv 3 3 , bash 4 4 , fetchFromGitHub 5 + , fetchFromGitLab 5 6 , SDL2 6 7 , alsa-lib 7 8 , catch2_3 ··· 72 73 rev = "0.10.1"; 73 74 hash = "sha256-iIYKvpOWafPJB5XhDOSIW9Mb4I3A4pcgIIPQdQYEqUw="; 74 75 }; 76 + 77 + wireplumber_0_4 = wireplumber.overrideAttrs (attrs: rec { 78 + version = "0.4.17"; 79 + src = fetchFromGitLab { 80 + domain = "gitlab.freedesktop.org"; 81 + owner = "pipewire"; 82 + repo = "wireplumber"; 83 + rev = version; 84 + hash = "sha256-vhpQT67+849WV1SFthQdUeFnYe/okudTQJoL3y+wXwI="; 85 + }; 86 + }); 75 87 in 76 88 stdenv.mkDerivation (finalAttrs: { 77 89 pname = "waybar"; ··· 138 150 ++ lib.optional traySupport libdbusmenu-gtk3 139 151 ++ lib.optional udevSupport udev 140 152 ++ lib.optional upowerSupport upower 141 - ++ lib.optional wireplumberSupport wireplumber 153 + ++ lib.optional wireplumberSupport wireplumber_0_4 142 154 ++ lib.optional (cavaSupport || pipewireSupport) pipewire 143 155 ++ lib.optional (!stdenv.isLinux) libinotify-kqueue; 144 156