ulauncher: fix loading svg icons

main
Jörg Thalheim 3 years ago committed by Artturin
parent 546a756e68
commit 516570d972
  1. 7
      pkgs/applications/misc/ulauncher/default.nix

@ -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…
Cancel
Save