about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2022-05-06 18:28:00 +0200
committerNaïm Favier <n@monade.li>2022-05-06 18:28:00 +0200
commit48e5fbac720e6606a6890841bc2c7b064771370f (patch)
tree5cbfe0279a5e3ef770b41b36e1084e6bb6dce9af
parentb2a87aef369037a69cf95b3c3a11a2047ce32775 (diff)
tremc: fix wrapper arguments escaping
-rw-r--r--pkgs/applications/networking/p2p/tremc/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/p2p/tremc/default.nix b/pkgs/applications/networking/p2p/tremc/default.nix
index ea6b92c08e7e4..6ff10989b1d3e 100644
--- a/pkgs/applications/networking/p2p/tremc/default.nix
+++ b/pkgs/applications/networking/p2p/tremc/default.nix
@@ -44,7 +44,7 @@ python3Packages.buildPythonApplication rec {
   dontBuild = true;
   doCheck = false;
 
-  makeWrapperArgs = ["--prefix PATH : ${wrapperPath}"];
+  makeWrapperArgs = ["--prefix PATH : ${lib.escapeShellArg wrapperPath}"];
 
   installPhase = ''
     make DESTDIR=$out install