lxqt: fix qtsvg import

This commit is contained in:
Thomas Tuegel
2020-09-07 08:06:44 -05:00
committed by Thomas Tuegel
parent 575b3a053a
commit da75881788
2 changed files with 3 additions and 2 deletions
+2 -2
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 = [
+1
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;