forked from mirrors/nixpkgs
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:
parent
4c9e0c75c7
commit
3fd82bba7f
|
@ -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; };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue