lxqt.xdg-desktop-portal-lxqt: allow extra qt styles

Qt style plugins should be included in buildInputs to be available in
the portal.
This commit is contained in:
José Romildo 2022-07-09 14:45:33 -03:00
parent 4c9e0c75c7
commit 3fd82bba7f

View File

@ -4,8 +4,10 @@
, cmake , cmake
, kwindowsystem , kwindowsystem
, libfm-qt , libfm-qt
, lxqt-qtplugin
, qtx11extras , qtx11extras
, lxqtUpdateScript , lxqtUpdateScript
, extraQtStyles ? []
}: }:
mkDerivation rec { mkDerivation rec {
@ -26,8 +28,10 @@ mkDerivation rec {
buildInputs = [ buildInputs = [
kwindowsystem kwindowsystem
libfm-qt libfm-qt
lxqt-qtplugin
qtx11extras qtx11extras
]; ]
++ extraQtStyles;
passthru.updateScript = lxqtUpdateScript { inherit pname version src; }; passthru.updateScript = lxqtUpdateScript { inherit pname version src; };