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

main
Maximilian Bosch 3 years ago committed by GitHub
parent aac7065c8d
commit a70b3d1847
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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

Loading…
Cancel
Save