neovim: update to latest master 2015-05-26

This commit is contained in:
Tobias Geerinckx-Rice 2015-05-27 01:20:53 +02:00
parent b84588cbde
commit af15a201e1

View file

@ -1,62 +1,69 @@
{ stdenv, fetchFromGitHub, unzip, ncurses, gettext, pkgconfig { stdenv, fetchFromGitHub, cmake, gettext, glib, libmsgpack
, cmake, pkgs, lpeg, lua, luajit, luaMessagePack, luabitop }: , libtermkey, libtool, libuv, lpeg, lua, luajit, luaMessagePack
, luabitop, ncurses, perl, pkgconfig, unibilium
, withJemalloc ? true, jemalloc }:
let version = "2014-11-26"; in let version = "2015-05-26"; in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "neovim-${version}"; name = "neovim-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
sha256 = "1bcmv0h3ln736xdv7r7v97vim2yqfdnkvpbckwdxi69p4d6lfms6"; sha256 = "0sszpqlq0yp6r62zgcjcmnllc058wzzh9ccvgb2jh9k19ksszyhc";
rev = "68fcd8b696dae33897303c9f8265629a31afbf17"; rev = "5a9ad68b258f33ebd7fa0a5da47b308f50f1e5e7";
repo = "neovim"; repo = "neovim";
owner = "neovim"; owner = "neovim";
}; };
libmsgpack = stdenv.mkDerivation rec { # FIXME: this is NOT the libvterm already in nixpkgs, but some NIH silliness:
version = "0.5.9"; neovimLibvterm = let version = "2015-02-23"; in stdenv.mkDerivation rec {
name = "libmsgpack-${version}"; name = "neovim-libvterm-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
sha256 = "12np3c2q346963mdgwa61y5dfnb91avq2hy4r6i6bdjwa7w6waq4"; sha256 = "0i2h74jrx4fy90sv57xj8g4lbjjg4nhrq2rv6rz576fmqfpllcc5";
rev = "ecf4b09acd29746829b6a02939db91dfdec635b4"; rev = "20ad1396c178c72873aeeb2870bd726f847acb70";
repo = "msgpack-c"; repo = "libvterm";
owner = "msgpack"; owner = "neovim";
}; };
buildInputs = [ cmake ]; buildInputs = [ libtool perl ];
makeFlags = "PREFIX=$(out)";
enableParallelBuilding = true; enableParallelBuilding = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "MessagePack implementation for C and C++"; description = "VT220/xterm/ECMA-48 terminal emulator library";
homepage = http://msgpack.org; homepage = http://www.leonerd.org.uk/code/libvterm/;
license = licenses.asl20; license = licenses.mit;
maintainers = with maintainers; [ manveru nckx ]; maintainers = with maintainers; [ nckx ];
platforms = platforms.all; platforms = platforms.unix;
}; };
}; };
enableParallelBuilding = true; enableParallelBuilding = true;
buildInputs = [ buildInputs = [
ncurses
pkgconfig
cmake cmake
pkgs.libuvVersions.v0_11_29 glib
libtermkey
libuv
luajit luajit
lua lua
lpeg lpeg
luaMessagePack luaMessagePack
luabitop luabitop
libmsgpack libmsgpack
ncurses
neovimLibvterm
pkgconfig
unibilium
] ++ stdenv.lib.optional withJemalloc jemalloc;
nativeBuildInputs = [
gettext
]; ];
nativeBuildInputs = [ gettext ];
LUA_CPATH="${lpeg}/lib/lua/${lua.luaversion}/?.so;${luabitop}/lib/lua/5.2/?.so"; LUA_CPATH="${lpeg}/lib/lua/${lua.luaversion}/?.so;${luabitop}/lib/lua/5.2/?.so";
LUA_PATH="${luaMessagePack}/share/lua/5.1/?.lua"; LUA_PATH="${luaMessagePack}/share/lua/5.1/?.lua";
cmakeFlags = [
"-DUSE_BUNDLED_MSGPACK=ON"
];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Vim text editor fork focused on extensibility and agility"; description = "Vim text editor fork focused on extensibility and agility";
@ -68,7 +75,7 @@ stdenv.mkDerivation rec {
modifications to the core source modifications to the core source
- Improve extensibility with a new plugin architecture - Improve extensibility with a new plugin architecture
''; '';
homepage = http://www.neovim.org; homepage = http://www.neovim.io;
# "Contributions committed before b17d96 by authors who did not sign the # "Contributions committed before b17d96 by authors who did not sign the
# Contributor License Agreement (CLA) remain under the Vim license. # Contributor License Agreement (CLA) remain under the Vim license.
# Contributions committed after b17d96 are licensed under Apache 2.0 unless # Contributions committed after b17d96 are licensed under Apache 2.0 unless