nheko: unset QT_STYLE_OVERRIDE

unset `QT_STYLE_OVERRIDE` to avoid showing a blank window at startup
see: https://github.com/NixOS/nixpkgs/issues/333009
This commit is contained in:
Jost Alemann
2025-04-13 12:21:44 +02:00
parent dfe7beec10
commit fb9e75cadb
+6 -1
View File
@@ -80,7 +80,12 @@ stdenv.mkDerivation rec {
preFixup = ''
# add gstreamer plugins path to the wrapper
qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0")
# unset QT_STYLE_OVERRIDE to avoid showing a blank window when started
# https://github.com/NixOS/nixpkgs/issues/333009
qtWrapperArgs+=(
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
--unset QT_STYLE_OVERRIDE
)
'';
meta = with lib; {