ulauncher: fix loading svg icons
This commit is contained in:
parent
546a756e68
commit
516570d972
1 changed files with 6 additions and 1 deletions
|
@ -33,6 +33,7 @@ python3Packages.buildPythonApplication rec {
|
|||
distutils_extra
|
||||
intltool
|
||||
wrapGAppsHook
|
||||
gdk-pixbuf
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
|
@ -58,6 +59,7 @@ python3Packages.buildPythonApplication rec {
|
|||
pyinotify
|
||||
python-Levenshtein
|
||||
pyxdg
|
||||
pycairo
|
||||
requests
|
||||
websocket-client
|
||||
];
|
||||
|
@ -105,7 +107,10 @@ python3Packages.buildPythonApplication rec {
|
|||
# do not double wrap
|
||||
dontWrapGApps = true;
|
||||
preFixup = ''
|
||||
makeWrapperArgs+=("''${gappsWrapperArgs[@]}" --prefix PATH : "${lib.makeBinPath [ wmctrl ]}")
|
||||
makeWrapperArgs+=(
|
||||
"''${gappsWrapperArgs[@]}"
|
||||
--prefix PATH : "${lib.makeBinPath [ wmctrl ]}"
|
||||
)
|
||||
'';
|
||||
|
||||
passthru = {
|
||||
|
|
Loading…
Reference in a new issue