birdtray: fix crash on wayland

oxalica c80bccd5 266dc8c3

+5 -1
+5 -1
pkgs/applications/misc/birdtray/default.nix
··· 36 --subst-var-by qttranslations ${qttranslations} 37 ''; 38 39 meta = with lib; { 40 description = "Mail system tray notification icon for Thunderbird"; 41 homepage = "https://github.com/gyunaev/birdtray"; 42 license = licenses.gpl3Plus; 43 - maintainers = with maintainers; [ Flakebi ]; 44 platforms = platforms.linux; 45 }; 46 }
··· 36 --subst-var-by qttranslations ${qttranslations} 37 ''; 38 39 + # Wayland support is broken. 40 + # https://github.com/gyunaev/birdtray/issues/113#issuecomment-621742315 41 + qtWrapperArgs = [ "--set QT_QPA_PLATFORM xcb" ]; 42 + 43 meta = with lib; { 44 description = "Mail system tray notification icon for Thunderbird"; 45 homepage = "https://github.com/gyunaev/birdtray"; 46 license = licenses.gpl3Plus; 47 + maintainers = with maintainers; [ Flakebi oxalica ]; 48 platforms = platforms.linux; 49 }; 50 }