forked from mirrors/nixpkgs
neovim: dont wrap when is null
restore previous behavior
This commit is contained in:
parent
4fe0ea478a
commit
295948f40f
|
@ -148,8 +148,9 @@ let
|
|||
in
|
||||
wrapNeovimUnstable neovim (res // {
|
||||
wrapperArgs = lib.escapeShellArgs (
|
||||
res.wrapperArgs ++ [ "--add-flags" "-u ${writeText "init.vim" res.neovimRcContent}" ])
|
||||
+ " " + extraMakeWrapperArgs
|
||||
res.wrapperArgs ++ lib.optionals (configure != {}) [
|
||||
"--add-flags" "-u ${writeText "init.vim" res.neovimRcContent}"
|
||||
]) + " " + extraMakeWrapperArgs
|
||||
;
|
||||
});
|
||||
in
|
||||
|
|
Loading…
Reference in a new issue