chatty: fix wrapper arguments escaping

main
Naïm Favier 2 years ago
parent 545a1eddcd
commit b2a87aef36
No known key found for this signature in database
GPG Key ID: 49B07322580B7EE2
  1. 2
      pkgs/applications/networking/instant-messengers/chatty/default.nix

@ -75,7 +75,7 @@ stdenv.mkDerivation rec {
preFixup = ''
gappsWrapperArgs+=(
--prefix PURPLE_PLUGIN_PATH : ${pidgin.makePluginPath plugins}
--prefix PURPLE_PLUGIN_PATH : ${lib.escapeShellArg (pidgin.makePluginPath plugins)}
${lib.concatMapStringsSep " " (p: p.wrapArgs or "") plugins}
)
'';

Loading…
Cancel
Save