about summary refs log tree commit diff
path: root/pkgs/applications/editors/neovim
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2021-12-03 16:37:52 +0100
committerGitHub <noreply@github.com>2021-12-03 16:37:52 +0100
commita70b3d1847bcbe42d685c2781dce1887cfc937f7 (patch)
treeb7008b9be6cebd75b44424d52f6d4997a0a34ae6 /pkgs/applications/editors/neovim
parentaac7065c8dc5380445193806bde90628987d9def (diff)
downloadnixlib-a70b3d1847bcbe42d685c2781dce1887cfc937f7.tar
nixlib-a70b3d1847bcbe42d685c2781dce1887cfc937f7.tar.gz
nixlib-a70b3d1847bcbe42d685c2781dce1887cfc937f7.tar.bz2
nixlib-a70b3d1847bcbe42d685c2781dce1887cfc937f7.tar.lz
nixlib-a70b3d1847bcbe42d685c2781dce1887cfc937f7.tar.xz
nixlib-a70b3d1847bcbe42d685c2781dce1887cfc937f7.tar.zst
nixlib-a70b3d1847bcbe42d685c2781dce1887cfc937f7.zip
neovim: prepend `extraMakeWrapperArgs` in wrapper with a space (#148409)
Diffstat (limited to 'pkgs/applications/editors/neovim')
-rw-r--r--pkgs/applications/editors/neovim/utils.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/neovim/utils.nix b/pkgs/applications/editors/neovim/utils.nix
index bf0d80d1f07d..e721457f2df0 100644
--- a/pkgs/applications/editors/neovim/utils.nix
+++ b/pkgs/applications/editors/neovim/utils.nix
@@ -177,7 +177,7 @@ let
     assert withPython -> throw "Python2 support has been removed from neovim, please remove withPython and extraPythonPackages.";
 
     wrapNeovimUnstable neovim (res // {
-      wrapperArgs = lib.escapeShellArgs res.wrapperArgs + extraMakeWrapperArgs;
+      wrapperArgs = lib.escapeShellArgs res.wrapperArgs + " " + extraMakeWrapperArgs;
       wrapRc = (configure != {});
   });
 in