lxqt: fix qtsvg import

gstqt5
Thomas Tuegel 2020-09-06 14:33:28 -05:00 committed by Thomas Tuegel
parent 575b3a053a
commit da75881788
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ pkgs, makeScope, libsForQt5 }:
{ pkgs, makeScope, libsForQt5, qt5 }:
let
packages = self: with self; {
@ -60,7 +60,7 @@ let
pkgs.lxmenu-data
pkgs.menu-cache
pkgs.openbox # default window manager
libsForQt5.qtsvg # provides QT5 plugins for svg icons
qt5.qtsvg # provides QT5 plugins for svg icons
];
corePackages = [

View File

@ -25440,6 +25440,7 @@ in
lumina = recurseIntoAttrs (callPackage ../desktops/lumina { });
lxqt = recurseIntoAttrs (import ../desktops/lxqt {
qt5 = qt514;
libsForQt5 = libsForQt514;
inherit pkgs;
inherit (lib) makeScope;