neovim: prepend extraMakeWrapperArgs in wrapper with a space (#148409)

This commit is contained in:
Maximilian Bosch 2021-12-03 16:37:52 +01:00 committed by GitHub
parent aac7065c8d
commit a70b3d1847
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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