summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/neovim
diff options
context:
space:
mode:
authorMatthieu Coudron <mcoudron@hotmail.com>2020-10-31 14:24:52 +0100
committerMatthieu Coudron <mcoudron@hotmail.com>2020-10-31 14:32:02 +0100
commit95702fe6d2ed934146b0cc8b81efd9fac5ac6e29 (patch)
tree246a81422061e5dfc6f5fd73ed59323cd42bb02d /pkgs/applications/editors/neovim
parent8cab21b48b46086d5240dcee4dd018cb4a78c074 (diff)
neovim: revert change to extraMakeWrapperArgs
wrapNeovim incited users to use a list instead of a string. Revert that: the change is not super useful while breaking home-manager.
Diffstat (limited to 'pkgs/applications/editors/neovim')
-rw-r--r--pkgs/applications/editors/neovim/utils.nix12
-rw-r--r--pkgs/applications/editors/neovim/wrapper.nix10
2 files changed, 9 insertions, 13 deletions
diff --git a/pkgs/applications/editors/neovim/utils.nix b/pkgs/applications/editors/neovim/utils.nix
index 1c49f6e0fbe1..15d3f214057f 100644
--- a/pkgs/applications/editors/neovim/utils.nix
+++ b/pkgs/applications/editors/neovim/utils.nix
@@ -118,7 +118,7 @@ let
# to keep backwards compatibility
legacyWrapper = neovim: {
- extraMakeWrapperArgs ? []
+ extraMakeWrapperArgs ? ""
, withPython ? true
/* the function you would have passed to python.withPackages */
, extraPythonPackages ? (_: [])
@@ -147,13 +147,9 @@ let
};
in
wrapNeovimUnstable neovim (res // {
- wrapperArgs = res.wrapperArgs
- ++ [
- "--add-flags" "-u ${writeText "init.vim" res.neovimRcContent}"
- ]
- ++ (if builtins.isList extraMakeWrapperArgs then extraMakeWrapperArgs
- else lib.warn "Passing a string as extraMakeWrapperArgs to the neovim wrapper is
- deprecated, please use a list instead")
+ wrapperArgs = lib.escapeShellArgs (
+ res.wrapperArgs ++ [ "--add-flags" "-u ${writeText "init.vim" res.neovimRcContent}" ])
+ + " " + extraMakeWrapperArgs
;
});
in
diff --git a/pkgs/applications/editors/neovim/wrapper.nix b/pkgs/applications/editors/neovim/wrapper.nix
index 06ef920e2767..d18d13a050fe 100644
--- a/pkgs/applications/editors/neovim/wrapper.nix
+++ b/pkgs/applications/editors/neovim/wrapper.nix
@@ -14,7 +14,7 @@ neovim:
let
wrapper = {
# should contain all args but the binary
- wrapperArgs ? []
+ wrapperArgs ? ""
, manifestRc ? null
, withPython2 ? true, python2Env ? null
, withPython3 ? true, python3Env ? null
@@ -33,7 +33,7 @@ let
# wrapper with most arguments we need, excluding those that cause problems to
# generate rplugin.vim, but still required for the final wrapper.
finalMakeWrapperArgs =
- [ "${neovim}/bin/nvim" "${placeholder "out"}/bin/nvim" ] ++ wrapperArgs ++
+ [ "${neovim}/bin/nvim" "${placeholder "out"}/bin/nvim" ] ++
[ "--set" "NVIM_SYSTEM_RPLUGIN_MANIFEST" "${placeholder "out"}/rplugin.vim" ];
in
symlinkJoin {
@@ -66,11 +66,11 @@ let
''
+ optionalString (manifestRc != null) (let
manifestWrapperArgs =
- [ "${neovim}/bin/nvim" "${placeholder "out"}/bin/nvim-wrapper" ] ++ wrapperArgs;
+ [ "${neovim}/bin/nvim" "${placeholder "out"}/bin/nvim-wrapper" ];
in ''
echo "Generating remote plugin manifest"
export NVIM_RPLUGIN_MANIFEST=$out/rplugin.vim
- makeWrapper ${lib.escapeShellArgs manifestWrapperArgs}
+ makeWrapper ${lib.escapeShellArgs manifestWrapperArgs} ${wrapperArgs}
# Some plugins assume that the home directory is accessible for
# initializing caches, temporary files, etc. Even if the plugin isn't
@@ -100,7 +100,7 @@ let
'')
+ ''
rm $out/bin/nvim
- makeWrapper ${lib.escapeShellArgs finalMakeWrapperArgs}
+ makeWrapper ${lib.escapeShellArgs finalMakeWrapperArgs} ${wrapperArgs}
'';
paths = [ neovim ];