neovim: 0.1.5 -> 0.1.6

also neovim-libvterm update: 2015-11-06 -> 2016-10-07
This commit is contained in:
Rok Garbas 2016-10-29 21:21:53 +02:00
parent bc1a6be6c3
commit 2002469c7b

View file

@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, cmake, gettext, libmsgpack, libtermkey { stdenv, fetchFromGitHub, cmake, gettext, libmsgpack, libtermkey
, libtool, libuv, luajit, luaPackages, man, ncurses, perl, pkgconfig , libtool, libuv, luajit, luaPackages, man, ncurses, perl, pkgconfig
, unibilium, makeWrapper, vimUtils, xsel , unibilium, makeWrapper, vimUtils, xsel, gperf
, withPython ? true, pythonPackages, extraPythonPackages ? [] , withPython ? true, pythonPackages, extraPythonPackages ? []
, withPython3 ? true, python3Packages, extraPython3Packages ? [] , withPython3 ? true, python3Packages, extraPython3Packages ? []
@ -18,13 +18,13 @@ let
# Note: this is NOT the libvterm already in nixpkgs, but some NIH silliness: # Note: this is NOT the libvterm already in nixpkgs, but some NIH silliness:
neovimLibvterm = stdenv.mkDerivation rec { neovimLibvterm = stdenv.mkDerivation rec {
name = "neovim-libvterm-${version}"; name = "neovim-libvterm-${version}";
version = "2015-11-06"; version = "2016-10-07";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "neovim"; owner = "neovim";
repo = "libvterm"; repo = "libvterm";
rev = "487f21dbf65f1c28962fef3f064603f415fbaeb2"; rev = "e0a3d4dbd44a9534bf7437ee98ceb26dabebf3ad";
sha256 = "1fig6v0qk0ylr7lqqk0d6x5yywb9ymh85vay4spw5b5r5p0ky7yx"; sha256 = "131mcnbdq4wvsf280v4az8vnakr78yrwlaihzgr5s1wmfjvf6knf";
}; };
buildInputs = [ perl ]; buildInputs = [ perl ];
@ -60,13 +60,13 @@ let
neovim = stdenv.mkDerivation rec { neovim = stdenv.mkDerivation rec {
name = "neovim-${version}"; name = "neovim-${version}";
version = "0.1.5"; version = "0.1.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "neovim"; owner = "neovim";
repo = "neovim"; repo = "neovim";
rev = "v${version}"; rev = "v${version}";
sha256 = "1ihlgm2h7147xyd5wrwg61vsnmkqc9j3ghsida4g2ilr7gw9c85y"; sha256 = "0s8vqf4aym1d1h8yi0znpqw5rv9v3z64y5aha9dmynbwxa58q7pp";
}; };
enableParallelBuilding = true; enableParallelBuilding = true;
@ -80,6 +80,7 @@ let
unibilium unibilium
luajit luajit
luaPackages.lua luaPackages.lua
gperf
] ++ optional withJemalloc jemalloc ] ++ optional withJemalloc jemalloc
++ lualibs; ++ lualibs;