9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
141 lines
4.2 KiB
Nix
141 lines
4.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, gettext, msgpack, libtermkey, libiconv
|
|
, libuv, lua, ncurses, pkg-config
|
|
, unibilium, xsel, gperf
|
|
, libvterm-neovim
|
|
, glibcLocales ? null, procps ? null
|
|
|
|
# now defaults to false because some tests can be flaky (clipboard etc)
|
|
, doCheck ? false
|
|
, nodejs ? null, fish ? null, python ? null
|
|
}:
|
|
|
|
with lib;
|
|
|
|
let
|
|
neovimLuaEnv = lua.withPackages(ps:
|
|
(with ps; [ lpeg luabitop mpack ]
|
|
++ optionals doCheck [
|
|
nvim-client luv coxpcall busted luafilesystem penlight inspect
|
|
]
|
|
));
|
|
|
|
pyEnv = python.withPackages(ps: [ ps.pynvim ps.msgpack ]);
|
|
|
|
# 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";
|
|
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "neovim-unwrapped";
|
|
version = "0.4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "neovim";
|
|
repo = "neovim";
|
|
rev = "v${version}";
|
|
sha256 = "11zyj6jvkwas3n6w1ckj3pk6jf81z1g7ngg4smmwm7c27y2a6f2m";
|
|
};
|
|
|
|
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
|
|
];
|
|
|
|
dontFixCmake = true;
|
|
|
|
buildInputs = [
|
|
gperf
|
|
libtermkey
|
|
libuv
|
|
libvterm-neovim
|
|
luv.libluv
|
|
msgpack
|
|
ncurses
|
|
neovimLuaEnv
|
|
unibilium
|
|
] ++ optional stdenv.isDarwin libiconv
|
|
++ optionals doCheck [ glibcLocales procps ]
|
|
;
|
|
|
|
inherit doCheck;
|
|
|
|
# to be exhaustive, one could run
|
|
# make oldtests too
|
|
checkPhase = ''
|
|
make functionaltest
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
gettext
|
|
pkg-config
|
|
];
|
|
|
|
# extra programs test via `make functionaltest`
|
|
checkInputs = [
|
|
fish
|
|
nodejs
|
|
pyEnv # for src/clint.py
|
|
];
|
|
|
|
|
|
# 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 ];
|
|
|
|
cmakeFlags = [
|
|
"-DGPERF_PRG=${gperf}/bin/gperf"
|
|
"-DLUA_PRG=${neovimLuaEnv.interpreter}"
|
|
"-DLIBLUV_LIBRARY=${luvpath}"
|
|
]
|
|
++ optional doCheck "-DBUSTED_PRG=${neovimLuaEnv}/bin/busted"
|
|
++ optional (!lua.pkgs.isLuaJIT) "-DPREFER_LUA=ON"
|
|
;
|
|
|
|
# triggers on buffer overflow bug while running tests
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
preConfigure = lib.optionalString stdenv.isDarwin ''
|
|
substituteInPlace src/nvim/CMakeLists.txt --replace " util" ""
|
|
'';
|
|
|
|
postInstall = lib.optionalString stdenv.isLinux ''
|
|
sed -i -e "s|'xsel|'${xsel}/bin/xsel|g" $out/share/nvim/runtime/autoload/provider/clipboard.vim
|
|
'';
|
|
|
|
# export PATH=$PWD/build/bin:${PATH}
|
|
shellHook=''
|
|
export VIMRUNTIME=$PWD/runtime
|
|
'';
|
|
|
|
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
|
|
'';
|
|
homepage = "https://www.neovim.io";
|
|
# "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 ];
|
|
maintainers = with maintainers; [ manveru rvolosatovs ma27 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|