about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/chatty
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2022-05-12 21:55:06 +0100
committerGitHub <noreply@github.com>2022-05-12 21:55:06 +0100
commiteae1669de52db05b4e1f3e1b6033b71839e19a2f (patch)
treee89f05b8cd099fa5740404a0efd139af89960db3 /pkgs/applications/networking/instant-messengers/chatty
parent6e45ca94ce1f93a8ed191bea2f8a597fd615e4d0 (diff)
parent163f8185b0ffd1fee2d20c2ec6c2a69d3a2458d8 (diff)
Merge pull request #171836 from ncfavier/escape-wrapper-args
Fix wrapper arguments escaping
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/chatty')
-rw-r--r--pkgs/applications/networking/instant-messengers/chatty/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/instant-messengers/chatty/default.nix b/pkgs/applications/networking/instant-messengers/chatty/default.nix
index 2b8edf319cf39..35266eff90092 100644
--- a/pkgs/applications/networking/instant-messengers/chatty/default.nix
+++ b/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}
     )
   '';