about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/chatty
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2022-05-06 18:27:35 +0200
committerNaïm Favier <n@monade.li>2022-05-06 18:27:35 +0200
commitb2a87aef369037a69cf95b3c3a11a2047ce32775 (patch)
tree2a773ea8d0f1dc7fc1d0288b44033c671d23ea46 /pkgs/applications/networking/instant-messengers/chatty
parent545a1eddcdd13b10d6cb2cf391e4a4aff8bffc12 (diff)
chatty: 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 586d49cf96f04..ef77b7e8fb800 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}
     )
   '';