2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, lib, makeWrapper
|
2017-12-11 08:26:41 +00:00
|
|
|
, vimUtils
|
|
|
|
, bundlerEnv, ruby
|
2018-11-07 20:38:18 +00:00
|
|
|
, nodejs
|
|
|
|
, nodePackages
|
2017-12-11 08:26:41 +00:00
|
|
|
, pythonPackages
|
|
|
|
, python3Packages
|
|
|
|
}:
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
neovim:
|
|
|
|
|
|
|
|
let
|
|
|
|
wrapper = {
|
2018-07-11 21:57:26 +01:00
|
|
|
withPython ? true, extraPythonPackages ? (_: []) /* the function you would have passed to python.withPackages */
|
|
|
|
, withPython3 ? true, extraPython3Packages ? (_: []) /* the function you would have passed to python.withPackages */
|
2018-11-07 20:38:18 +00:00
|
|
|
, withNodeJs? false
|
2017-12-11 08:26:41 +00:00
|
|
|
, withRuby ? true
|
|
|
|
, withPyGUI ? false
|
|
|
|
, vimAlias ? false
|
|
|
|
, viAlias ? false
|
2018-07-12 21:47:02 +01:00
|
|
|
, configure ? {}
|
2017-12-11 08:26:41 +00:00
|
|
|
}:
|
|
|
|
let
|
|
|
|
|
|
|
|
rubyEnv = bundlerEnv {
|
|
|
|
name = "neovim-ruby-env";
|
|
|
|
gemdir = ./ruby_provider;
|
|
|
|
postBuild = ''
|
2018-02-22 20:18:04 +00:00
|
|
|
ln -sf ${ruby}/bin/* $out/bin
|
2017-12-11 08:26:41 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-07-11 21:57:26 +01:00
|
|
|
/* for compatibility with passing extraPythonPackages as a list; added 2018-07-11 */
|
|
|
|
compatFun = funOrList: (if builtins.isList funOrList then
|
2018-09-05 16:40:29 +01:00
|
|
|
(_: lib.warn "passing a list as extraPythonPackages to the neovim wrapper is deprecated, pass a function as to python.withPackages instead" funOrList)
|
2018-07-11 21:57:26 +01:00
|
|
|
else funOrList);
|
|
|
|
extraPythonPackagesFun = compatFun extraPythonPackages;
|
|
|
|
extraPython3PackagesFun = compatFun extraPython3Packages;
|
|
|
|
|
2018-07-12 21:47:02 +01:00
|
|
|
requiredPlugins = vimUtils.requiredPlugins configure;
|
|
|
|
getDeps = attrname: map (plugin: plugin.${attrname} or (_:[]));
|
|
|
|
|
|
|
|
pluginPythonPackages = getDeps "pythonDependencies" requiredPlugins;
|
2018-07-11 21:57:26 +01:00
|
|
|
pythonEnv = pythonPackages.python.withPackages(ps:
|
|
|
|
(if withPyGUI then [ ps.neovim_gui ] else [ ps.neovim ])
|
2018-07-12 21:47:02 +01:00
|
|
|
++ (extraPythonPackagesFun ps)
|
|
|
|
++ (concatMap (f: f ps) pluginPythonPackages));
|
2017-12-11 08:26:41 +00:00
|
|
|
|
2018-07-12 21:47:02 +01:00
|
|
|
pluginPython3Packages = getDeps "python3Dependencies" requiredPlugins;
|
2018-07-11 21:57:26 +01:00
|
|
|
python3Env = python3Packages.python.withPackages (ps:
|
2018-07-12 21:47:02 +01:00
|
|
|
[ ps.neovim ]
|
|
|
|
++ (extraPython3PackagesFun ps)
|
|
|
|
++ (concatMap (f: f ps) pluginPython3Packages));
|
2017-12-11 08:26:41 +00:00
|
|
|
|
2018-11-07 20:38:18 +00:00
|
|
|
binPath = makeBinPath (optionals withRuby [rubyEnv] ++ optionals withNodeJs [nodejs]);
|
|
|
|
|
2017-12-11 08:26:41 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2018-05-24 05:37:33 +01:00
|
|
|
name = "neovim-${stdenv.lib.getVersion neovim}";
|
2017-12-11 08:26:41 +00:00
|
|
|
buildCommand = let bin="${neovim}/bin/nvim"; in ''
|
|
|
|
if [ ! -x "${bin}" ]
|
|
|
|
then
|
|
|
|
echo "cannot find executable file \`${bin}'"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
makeWrapper "$(readlink -v --canonicalize-existing "${bin}")" \
|
|
|
|
"$out/bin/nvim" --add-flags " \
|
2018-11-07 20:38:18 +00:00
|
|
|
--cmd \"${if withNodeJs then "let g:node_host_prog='${nodePackages.neovim}/bin/neovim-node-host'" else "let g:loaded_node_provider=1"}\" \
|
2017-12-11 08:26:41 +00:00
|
|
|
--cmd \"${if withPython then "let g:python_host_prog='$out/bin/nvim-python'" else "let g:loaded_python_provider = 1"}\" \
|
|
|
|
--cmd \"${if withPython3 then "let g:python3_host_prog='$out/bin/nvim-python3'" else "let g:loaded_python3_provider = 1"}\" \
|
|
|
|
--cmd \"${if withRuby then "let g:ruby_host_prog='$out/bin/nvim-ruby'" else "let g:loaded_ruby_provider=1"}\" " \
|
2018-11-07 20:38:18 +00:00
|
|
|
--suffix PATH : ${binPath} \
|
|
|
|
${optionalString withRuby '' --set GEM_HOME ${rubyEnv}/${rubyEnv.ruby.gemPath}'' }
|
2017-12-11 08:26:41 +00:00
|
|
|
|
2018-01-16 08:41:31 +00:00
|
|
|
''
|
|
|
|
+ optionalString (!stdenv.isDarwin) ''
|
|
|
|
# copy and patch the original neovim.desktop file
|
2017-12-11 08:26:41 +00:00
|
|
|
mkdir -p $out/share/applications
|
|
|
|
substitute ${neovim}/share/applications/nvim.desktop $out/share/applications/nvim.desktop \
|
|
|
|
--replace 'TryExec=nvim' "TryExec=$out/bin/nvim" \
|
|
|
|
--replace 'Name=Neovim' 'Name=WrappedNeovim'
|
|
|
|
''
|
|
|
|
+ optionalString withPython ''
|
2018-07-11 16:05:51 +01:00
|
|
|
makeWrapper ${pythonEnv}/bin/python $out/bin/nvim-python --unset PYTHONPATH
|
2017-12-11 08:26:41 +00:00
|
|
|
'' + optionalString withPython3 ''
|
2018-07-11 16:05:51 +01:00
|
|
|
makeWrapper ${python3Env}/bin/python3 $out/bin/nvim-python3 --unset PYTHONPATH
|
2017-12-11 08:26:41 +00:00
|
|
|
'' + optionalString withRuby ''
|
|
|
|
ln -s ${rubyEnv}/bin/neovim-ruby-host $out/bin/nvim-ruby
|
|
|
|
''
|
|
|
|
+ optionalString withPyGUI ''
|
|
|
|
makeWrapper "${pythonEnv}/bin/pynvim" "$out/bin/pynvim" \
|
|
|
|
--prefix PATH : "$out/bin"
|
|
|
|
'' + optionalString vimAlias ''
|
|
|
|
ln -s $out/bin/nvim $out/bin/vim
|
|
|
|
'' + optionalString viAlias ''
|
|
|
|
ln -s $out/bin/nvim $out/bin/vi
|
2018-07-12 21:47:02 +01:00
|
|
|
'' + optionalString (configure != {}) ''
|
2017-12-11 08:26:41 +00:00
|
|
|
wrapProgram $out/bin/nvim --add-flags "-u ${vimUtils.vimrcFile configure}"
|
|
|
|
''
|
|
|
|
;
|
|
|
|
|
|
|
|
preferLocalBuild = true;
|
|
|
|
|
|
|
|
buildInputs = [makeWrapper];
|
|
|
|
passthru = { unwrapped = neovim; };
|
|
|
|
|
|
|
|
meta = neovim.meta // {
|
|
|
|
description = neovim.meta.description;
|
|
|
|
hydraPlatforms = [];
|
|
|
|
# prefer wrapper over the package
|
|
|
|
priority = (neovim.meta.priority or 0) - 1;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
lib.makeOverridable wrapper
|