2021-01-15 13:21:58 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, gettext, msgpack, libtermkey, libiconv
|
2021-01-19 06:50:56 +00:00
|
|
|
, libuv, lua, ncurses, pkg-config
|
2021-10-28 16:57:13 +00:00
|
|
|
, unibilium, gperf
|
2018-05-16 05:55:26 +00:00
|
|
|
, libvterm-neovim
|
2020-05-10 19:13:02 +00:00
|
|
|
, tree-sitter
|
2019-02-05 15:00:19 +00:00
|
|
|
, glibcLocales ? null, procps ? null
|
|
|
|
|
|
|
|
# now defaults to false because some tests can be flaky (clipboard etc)
|
|
|
|
, doCheck ? false
|
2021-05-01 00:29:59 +00:00
|
|
|
, nodejs ? null, fish ? null, python3 ? null
|
2015-06-11 00:42:20 +00:00
|
|
|
}:
|
2014-11-27 20:04:28 +00:00
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
with lib;
|
2014-11-27 20:04:28 +00:00
|
|
|
|
2015-06-11 00:42:20 +00:00
|
|
|
let
|
2019-02-05 15:00:19 +00:00
|
|
|
neovimLuaEnv = lua.withPackages(ps:
|
2019-08-01 11:52:11 +00:00
|
|
|
(with ps; [ lpeg luabitop mpack ]
|
2019-02-05 15:00:19 +00:00
|
|
|
++ optionals doCheck [
|
|
|
|
nvim-client luv coxpcall busted luafilesystem penlight inspect
|
|
|
|
]
|
|
|
|
));
|
2020-05-23 15:05:52 +00:00
|
|
|
|
2021-05-01 00:29:59 +00:00
|
|
|
pyEnv = python3.withPackages(ps: with ps; [ pynvim msgpack ]);
|
2019-02-05 15:00:19 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "neovim-unwrapped";
|
2021-12-31 21:40:27 +00:00
|
|
|
version = "0.6.1";
|
2015-06-11 00:42:20 +00:00
|
|
|
|
2015-06-11 08:48:29 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "neovim";
|
2016-06-04 15:58:01 +00:00
|
|
|
repo = "neovim";
|
|
|
|
rev = "v${version}";
|
2021-12-31 21:40:27 +00:00
|
|
|
sha256 = "sha256-0XCW047WopPr3pRTy9rF3Ff6MvNRHT4FletzOERD41A=";
|
2015-06-11 08:48:29 +00:00
|
|
|
};
|
2015-06-11 00:42:20 +00:00
|
|
|
|
2018-12-30 19:37:44 +00: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 07:24:14 +00:00
|
|
|
dontFixCmake = true;
|
2015-06-11 00:42:20 +00:00
|
|
|
|
2021-08-31 17:28:57 +00:00
|
|
|
inherit lua;
|
|
|
|
|
2015-06-11 08:48:29 +00:00
|
|
|
buildInputs = [
|
2019-08-01 11:52:11 +00:00
|
|
|
gperf
|
2015-06-11 08:48:29 +00:00
|
|
|
libtermkey
|
|
|
|
libuv
|
2019-08-01 11:52:11 +00:00
|
|
|
libvterm-neovim
|
2022-03-29 02:48:19 +00:00
|
|
|
# This is actually a c library, hence it's not included in neovimLuaEnv,
|
|
|
|
# see:
|
|
|
|
# https://github.com/luarocks/luarocks/issues/1402#issuecomment-1080616570
|
|
|
|
# and it's definition at: pkgs/development/lua-modules/overrides.nix
|
|
|
|
lua.pkgs.libluv
|
2018-08-17 23:53:33 +00:00
|
|
|
msgpack
|
2015-06-11 08:48:29 +00:00
|
|
|
ncurses
|
2019-02-05 15:00:19 +00:00
|
|
|
neovimLuaEnv
|
2020-05-10 19:13:02 +00:00
|
|
|
tree-sitter
|
2019-08-01 11:52:11 +00:00
|
|
|
unibilium
|
2019-02-15 03:57:09 +00:00
|
|
|
] ++ optional stdenv.isDarwin libiconv
|
2019-02-05 15:00:19 +00:00
|
|
|
++ optionals doCheck [ glibcLocales procps ]
|
|
|
|
;
|
|
|
|
|
|
|
|
inherit doCheck;
|
|
|
|
|
|
|
|
# to be exhaustive, one could run
|
|
|
|
# make oldtests too
|
|
|
|
checkPhase = ''
|
|
|
|
make functionaltest
|
|
|
|
'';
|
2015-06-11 08:48:29 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2015-06-17 17:36:06 +00:00
|
|
|
cmake
|
2015-06-11 08:48:29 +00:00
|
|
|
gettext
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2015-06-11 08:48:29 +00:00
|
|
|
];
|
|
|
|
|
2020-05-23 15:05:52 +00:00
|
|
|
# extra programs test via `make functionaltest`
|
|
|
|
checkInputs = [
|
|
|
|
fish
|
|
|
|
nodejs
|
|
|
|
pyEnv # for src/clint.py
|
|
|
|
];
|
|
|
|
|
2016-06-04 15:58:01 +00:00
|
|
|
|
2019-01-25 21:20:12 +00: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-12 02:11:31 +00:00
|
|
|
cmakeFlags = [
|
2022-03-29 02:48:19 +00:00
|
|
|
# Don't use downloaded dependencies. At the end of the configurePhase one
|
|
|
|
# can spot that cmake says this option was "not used by the project".
|
|
|
|
# That's because all dependencies were found and
|
|
|
|
# third-party/CMakeLists.txt is not read at all.
|
2020-05-10 19:13:02 +00:00
|
|
|
"-DUSE_BUNDLED=OFF"
|
2019-02-05 15:00:19 +00:00
|
|
|
]
|
2019-05-16 09:59:10 +00:00
|
|
|
++ optional (!lua.pkgs.isLuaJIT) "-DPREFER_LUA=ON"
|
2019-02-05 15:00:19 +00:00
|
|
|
;
|
2015-06-11 08:48:29 +00:00
|
|
|
|
2016-04-19 02:05:50 +00:00
|
|
|
# triggers on buffer overflow bug while running tests
|
|
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
preConfigure = lib.optionalString stdenv.isDarwin ''
|
2015-10-22 20:46:18 +00:00
|
|
|
substituteInPlace src/nvim/CMakeLists.txt --replace " util" ""
|
2015-06-10 08:05:59 +00:00
|
|
|
'';
|
|
|
|
|
2019-02-05 15:00:19 +00:00
|
|
|
shellHook=''
|
|
|
|
export VIMRUNTIME=$PWD/runtime
|
|
|
|
'';
|
|
|
|
|
2015-06-11 08:48:29 +00: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-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.neovim.io";
|
2021-07-10 18:28:51 +00:00
|
|
|
mainProgram = "nvim";
|
2015-06-11 08:48:29 +00: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 14:13:48 +00:00
|
|
|
maintainers = with maintainers; [ manveru rvolosatovs ma27 ];
|
2015-06-11 08:48:29 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2019-02-05 15:00:19 +00:00
|
|
|
}
|