nixpkgs/pkgs/applications/editors/neovim/default.nix

121 lines
3.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, gettext, libmsgpack, libtermkey
, libtool, libuv, luaPackages, ncurses, perl, pkgconfig
, unibilium, vimUtils, xsel, gperf, callPackage
, withJemalloc ? true, jemalloc
}:
2014-11-27 20:04:28 +00:00
with stdenv.lib;
2014-11-27 20:04:28 +00:00
let
2015-06-09 22:50:35 +00:00
# Note: this is NOT the libvterm already in nixpkgs, but some NIH silliness:
neovimLibvterm = stdenv.mkDerivation rec {
name = "neovim-libvterm-${version}";
version = "2017-11-05";
2014-11-27 20:04:28 +00:00
src = fetchFromGitHub {
owner = "neovim";
repo = "libvterm";
rev = "4ca7ebf7d25856e90bc9d9cc49412e80be7c4ea8";
sha256 = "05kyvvz8af90mvig11ya5xd8f4mbvapwyclyrihm9lwas706lzf6";
2014-11-27 20:04:28 +00:00
};
buildInputs = [ perl ];
nativeBuildInputs = [ libtool ];
2015-06-10 08:05:59 +00:00
makeFlags = [ "PREFIX=$(out)" ]
++ stdenv.lib.optional stdenv.isDarwin "LIBTOOL=${libtool}/bin/libtool";
2014-11-27 20:04:28 +00:00
enableParallelBuilding = true;
meta = {
description = "VT220/xterm/ECMA-48 terminal emulator library";
homepage = http://www.leonerd.org.uk/code/libvterm/;
license = licenses.mit;
maintainers = with maintainers; [ garbas ];
platforms = platforms.unix;
2014-11-27 20:04:28 +00:00
};
};
neovim = stdenv.mkDerivation rec {
name = "neovim-unwrapped-${version}";
2018-01-21 18:05:07 +00:00
version = "0.2.2";
src = fetchFromGitHub {
owner = "neovim";
repo = "neovim";
rev = "v${version}";
2018-01-21 18:05:07 +00:00
sha256 = "1dxr29d0hyag7snbww5s40as90412qb61rgj7gd9rps1iccl9gv4";
};
enableParallelBuilding = true;
buildInputs = [
libtermkey
libuv
libmsgpack
ncurses
neovimLibvterm
unibilium
luaPackages.lua
gperf
] ++ optional withJemalloc jemalloc
++ lualibs;
nativeBuildInputs = [
cmake
gettext
pkgconfig
];
LUA_PATH = stdenv.lib.concatStringsSep ";" (map luaPackages.getLuaPath lualibs);
LUA_CPATH = stdenv.lib.concatStringsSep ";" (map luaPackages.getLuaCPath lualibs);
lualibs = [ luaPackages.mpack luaPackages.lpeg luaPackages.luabitop ];
cmakeFlags = [
"-DLUA_PRG=${luaPackages.lua}/bin/lua"
"-DGPERF_PRG=${gperf}/bin/gperf"
];
2016-04-19 02:05:50 +00:00
# triggers on buffer overflow bug while running tests
hardeningDisable = [ "fortify" ];
preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
2015-06-10 08:05:59 +00:00
export DYLD_LIBRARY_PATH=${jemalloc}/lib
substituteInPlace src/nvim/CMakeLists.txt --replace " util" ""
2015-06-10 08:05:59 +00:00
'';
postInstall = stdenv.lib.optionalString stdenv.isLinux ''
sed -i -e "s|'xsel|'${xsel}/bin/xsel|" $out/share/nvim/runtime/autoload/provider/clipboard.vim
'' + stdenv.lib.optionalString (withJemalloc && stdenv.isDarwin) ''
2015-06-10 08:05:59 +00:00
install_name_tool -change libjemalloc.1.dylib \
${jemalloc}/lib/libjemalloc.1.dylib \
$out/bin/nvim
'';
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
'';
2016-04-19 19:20:34 +00:00
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 garbas rvolosatovs ];
platforms = platforms.unix;
};
2014-11-27 20:04:28 +00:00
};
in
neovim