summary refs log tree commit diff
path: root/pkgs/applications/editors/neovim
diff options
context:
space:
mode:
authorRoman Volosatovs <rvolosatovs@riseup.net>2019-09-16 22:00:04 +0200
committerRoman Volosatovs <rvolosatovs@riseup.net>2019-09-16 22:00:43 +0200
commit824869c3fc01bb2081d2e41206156fd91ee37557 (patch)
tree5e03226e411266722ab6ce26e78dd12968b3bf15 /pkgs/applications/editors/neovim
parent53502fce1b9123b676f2722b2960bab30340b5ab (diff)
downloadnixpkgs-824869c3fc01bb2081d2e41206156fd91ee37557.tar
nixpkgs-824869c3fc01bb2081d2e41206156fd91ee37557.tar.gz
nixpkgs-824869c3fc01bb2081d2e41206156fd91ee37557.tar.bz2
nixpkgs-824869c3fc01bb2081d2e41206156fd91ee37557.tar.lz
nixpkgs-824869c3fc01bb2081d2e41206156fd91ee37557.tar.xz
nixpkgs-824869c3fc01bb2081d2e41206156fd91ee37557.tar.zst
nixpkgs-824869c3fc01bb2081d2e41206156fd91ee37557.zip
neovim: 0.3.8 -> 0.4.2
Diffstat (limited to 'pkgs/applications/editors/neovim')
-rw-r--r--pkgs/applications/editors/neovim/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix
index 8c39eed8a4a..6808d7115c5 100644
--- a/pkgs/applications/editors/neovim/default.nix
+++ b/pkgs/applications/editors/neovim/default.nix
@@ -21,13 +21,13 @@ let
 in
   stdenv.mkDerivation rec {
     pname = "neovim-unwrapped";
-    version = "0.3.8";
+    version = "0.4.2";
 
     src = fetchFromGitHub {
       owner = "neovim";
       repo = "neovim";
       rev = "v${version}";
-      sha256 = "15flii3p4g9f65xy9jpkb8liajrvhm5ck4j39z6d6b1nkxr6ghwb";
+      sha256 = "13w446plvgl219lhj29jyimhiqvs1y1byrz4qpdmxgyddmx9xqss";
     };
 
     patches = [
@@ -45,6 +45,7 @@ in
       libtermkey
       libuv
       libvterm-neovim
+      lua.pkgs.luv.libluv
       msgpack
       ncurses
       neovimLuaEnv
@@ -78,6 +79,7 @@ in
 
     cmakeFlags = [
       "-DGPERF_PRG=${gperf}/bin/gperf"
+      "-DLIBLUV_LIBRARY=${lua.pkgs.luv}/lib/lua/${lua.luaversion}/luv.so"
       "-DLUA_PRG=${neovimLuaEnv.interpreter}"
     ]
     ++ optional doCheck "-DBUSTED_PRG=${neovimLuaEnv}/bin/busted"