From a70b3d1847bcbe42d685c2781dce1887cfc937f7 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Fri, 3 Dec 2021 16:37:52 +0100 Subject: [PATCH] neovim: prepend `extraMakeWrapperArgs` in wrapper with a space (#148409) --- pkgs/applications/editors/neovim/utils.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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