From ae82656f09311d34900c6dfe192a050059daf6c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Na=C3=AFm=20Favier?= Date: Fri, 6 May 2022 18:33:53 +0200 Subject: [PATCH] sqitchMysql,sqitchPg: fix wrapper arguments escaping --- pkgs/development/tools/misc/sqitch/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/sqitch/default.nix b/pkgs/development/tools/misc/sqitch/default.nix index 5e3c3bc37c6..f941ab05e28 100644 --- a/pkgs/development/tools/misc/sqitch/default.nix +++ b/pkgs/development/tools/misc/sqitch/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation { ''; dontStrip = true; postFixup = '' - wrapProgram $out/bin/sqitch --prefix PERL5LIB : ${perlPackages.makeFullPerlPath modules} + wrapProgram $out/bin/sqitch --prefix PERL5LIB : ${lib.escapeShellArg (perlPackages.makeFullPerlPath modules)} ''; meta = {