2021-01-15 05:21:58 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, gettext, msgpack, libtermkey, libiconv
|
2021-01-18 22:50:56 -08:00
|
|
|
, libuv, lua, ncurses, pkg-config
|
2018-07-20 17:44:44 -07:00
|
|
|
, unibilium, xsel, gperf
|
2018-05-15 22:55:26 -07:00
|
|
|
, libvterm-neovim
|
2019-02-05 07:00:19 -08:00
|
|
|
, glibcLocales ? null, procps ? null
|
|
|
|
|
|
|
|
# now defaults to false because some tests can be flaky (clipboard etc)
|
|
|
|
, doCheck ? false
|
2020-05-23 08:05:52 -07:00
|
|
|
, nodejs ? null, fish ? null, python ? null
|
2015-06-10 17:42:20 -07:00
|
|
|
}:
|
2014-11-27 12:04:28 -08:00
|
|
|
|
2021-01-15 05:21:58 -08:00
|
|
|
with lib;
|
2014-11-27 12:04:28 -08:00
|
|
|
|
2015-06-10 17:42:20 -07:00
|
|
|
let
|
2019-02-05 07:00:19 -08:00
|
|
|
neovimLuaEnv = lua.withPackages(ps:
|
2019-08-01 04:52:11 -07:00
|
|
|
(with ps; [ lpeg luabitop mpack ]
|
2019-02-05 07:00:19 -08:00
|
|
|
++ optionals doCheck [
|
|
|
|
nvim-client luv coxpcall busted luafilesystem penlight inspect
|
|
|
|
]
|
|
|
|
));
|
2020-05-23 08:05:52 -07:00
|
|
|
|
|
|
|
pyEnv = python.withPackages(ps: [ ps.pynvim ps.msgpack ]);
|
2020-08-13 11:50:06 -07:00
|
|
|
|
|
|
|
# FIXME: this is verry messy and strange.
|
|
|
|
# see https://github.com/NixOS/nixpkgs/pull/80528
|
|
|
|
luv = lua.pkgs.luv;
|
|
|
|
luvpath = with builtins ; if stdenv.isDarwin
|
|
|
|
then "${luv.libluv}/lib/lua/${lua.luaversion}/libluv.${head (match "([0-9.]+).*" luv.version)}.dylib"
|
|
|
|
else "${luv}/lib/lua/${lua.luaversion}/luv.so";
|
|
|
|
|
2019-02-05 07:00:19 -08:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "neovim-unwrapped";
|
2020-08-05 01:22:53 -07:00
|
|
|
version = "0.4.4";
|
2015-06-10 17:42:20 -07:00
|
|
|
|
2015-06-11 01:48:29 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "neovim";
|
2016-06-04 08:58:01 -07:00
|
|
|
repo = "neovim";
|
|
|
|
rev = "v${version}";
|
2020-08-05 01:22:53 -07:00
|
|
|
sha256 = "11zyj6jvkwas3n6w1ckj3pk6jf81z1g7ngg4smmwm7c27y2a6f2m";
|
2015-06-11 01:48:29 -07:00
|
|
|
};
|
2015-06-10 17:42:20 -07:00
|
|
|
|
2018-12-30 11:37:44 -08:00
|
|
|
patches = [
|
|
|
|
# introduce a system-wide rplugin.vim in addition to the user one
|
|
|
|
# necessary so that nix can handle `UpdateRemotePlugins` for the plugins
|
|
|
|
# it installs. See https://github.com/neovim/neovim/issues/9413.
|
|
|
|
./system_rplugin_manifest.patch
|
|
|
|
];
|
|
|
|
|
2019-05-14 00:24:14 -07:00
|
|
|
dontFixCmake = true;
|
2015-06-10 17:42:20 -07:00
|
|
|
|
2015-06-11 01:48:29 -07:00
|
|
|
buildInputs = [
|
2019-08-01 04:52:11 -07:00
|
|
|
gperf
|
2015-06-11 01:48:29 -07:00
|
|
|
libtermkey
|
|
|
|
libuv
|
2019-08-01 04:52:11 -07:00
|
|
|
libvterm-neovim
|
2020-08-13 11:50:06 -07:00
|
|
|
luv.libluv
|
2018-08-17 16:53:33 -07:00
|
|
|
msgpack
|
2015-06-11 01:48:29 -07:00
|
|
|
ncurses
|
2019-02-05 07:00:19 -08:00
|
|
|
neovimLuaEnv
|
2019-08-01 04:52:11 -07:00
|
|
|
unibilium
|
2019-02-14 19:57:09 -08:00
|
|
|
] ++ optional stdenv.isDarwin libiconv
|
2019-02-05 07:00:19 -08:00
|
|
|
++ optionals doCheck [ glibcLocales procps ]
|
|
|
|
;
|
|
|
|
|
|
|
|
inherit doCheck;
|
|
|
|
|
|
|
|
# to be exhaustive, one could run
|
|
|
|
# make oldtests too
|
|
|
|
checkPhase = ''
|
|
|
|
make functionaltest
|
|
|
|
'';
|
2015-06-11 01:48:29 -07:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2015-06-17 10:36:06 -07:00
|
|
|
cmake
|
2015-06-11 01:48:29 -07:00
|
|
|
gettext
|
2021-01-18 22:50:56 -08:00
|
|
|
pkg-config
|
2015-06-11 01:48:29 -07:00
|
|
|
];
|
|
|
|
|
2020-05-23 08:05:52 -07:00
|
|
|
# extra programs test via `make functionaltest`
|
|
|
|
checkInputs = [
|
|
|
|
fish
|
|
|
|
nodejs
|
|
|
|
pyEnv # for src/clint.py
|
|
|
|
];
|
|
|
|
|
2016-06-04 08:58:01 -07:00
|
|
|
|
2019-01-25 13:20:12 -08:00
|
|
|
# nvim --version output retains compilation flags and references to build tools
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/nvim/version.c --replace NVIM_VERSION_CFLAGS "";
|
|
|
|
'';
|
|
|
|
# check that the above patching actually works
|
|
|
|
disallowedReferences = [ stdenv.cc ];
|
|
|
|
|
2016-06-11 19:11:31 -07:00
|
|
|
cmakeFlags = [
|
2018-05-12 15:21:34 -07:00
|
|
|
"-DGPERF_PRG=${gperf}/bin/gperf"
|
2019-08-01 04:52:11 -07:00
|
|
|
"-DLUA_PRG=${neovimLuaEnv.interpreter}"
|
2020-08-13 11:50:06 -07:00
|
|
|
"-DLIBLUV_LIBRARY=${luvpath}"
|
2019-02-05 07:00:19 -08:00
|
|
|
]
|
|
|
|
++ optional doCheck "-DBUSTED_PRG=${neovimLuaEnv}/bin/busted"
|
2019-05-16 02:59:10 -07:00
|
|
|
++ optional (!lua.pkgs.isLuaJIT) "-DPREFER_LUA=ON"
|
2019-02-05 07:00:19 -08:00
|
|
|
;
|
2015-06-11 01:48:29 -07:00
|
|
|
|
2016-04-18 19:05:50 -07:00
|
|
|
# triggers on buffer overflow bug while running tests
|
|
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
|
2021-01-15 05:21:58 -08:00
|
|
|
preConfigure = lib.optionalString stdenv.isDarwin ''
|
2015-10-22 13:46:18 -07:00
|
|
|
substituteInPlace src/nvim/CMakeLists.txt --replace " util" ""
|
2015-06-10 01:05:59 -07:00
|
|
|
'';
|
|
|
|
|
2021-01-15 05:21:58 -08:00
|
|
|
postInstall = lib.optionalString stdenv.isLinux ''
|
2018-07-22 21:32:16 -07:00
|
|
|
sed -i -e "s|'xsel|'${xsel}/bin/xsel|g" $out/share/nvim/runtime/autoload/provider/clipboard.vim
|
2015-05-26 06:12:27 -07:00
|
|
|
'';
|
2015-06-11 01:48:29 -07:00
|
|
|
|
2019-02-05 07:00:19 -08:00
|
|
|
# export PATH=$PWD/build/bin:${PATH}
|
|
|
|
shellHook=''
|
|
|
|
export VIMRUNTIME=$PWD/runtime
|
|
|
|
'';
|
|
|
|
|
2015-06-11 01:48:29 -07:00
|
|
|
meta = {
|
|
|
|
description = "Vim text editor fork focused on extensibility and agility";
|
|
|
|
longDescription = ''
|
|
|
|
Neovim is a project that seeks to aggressively refactor Vim in order to:
|
|
|
|
- Simplify maintenance and encourage contributions
|
|
|
|
- Split the work between multiple developers
|
|
|
|
- Enable the implementation of new/modern user interfaces without any
|
|
|
|
modifications to the core source
|
|
|
|
- Improve extensibility with a new plugin architecture
|
|
|
|
'';
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.neovim.io";
|
2015-06-11 01:48:29 -07:00
|
|
|
# "Contributions committed before b17d96 by authors who did not sign the
|
|
|
|
# Contributor License Agreement (CLA) remain under the Vim license.
|
|
|
|
# Contributions committed after b17d96 are licensed under Apache 2.0 unless
|
|
|
|
# those contributions were copied from Vim (identified in the commit logs
|
|
|
|
# by the vim-patch token). See LICENSE for details."
|
|
|
|
license = with licenses; [ asl20 vim ];
|
2019-12-26 06:13:48 -08:00
|
|
|
maintainers = with maintainers; [ manveru rvolosatovs ma27 ];
|
2015-06-11 01:48:29 -07:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2019-02-05 07:00:19 -08:00
|
|
|
}
|