gnu: neovim: Depend on Lua 5.1, not 5.2.

* gnu/packages/vim.scm (neovim): Use correct Lua version as dependencies

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
HiPhish 2019-04-10 13:21:26 +02:00 committed by Ludovic Courtès
parent 8b87b1bf00
commit 9abfbd79cb
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 5 additions and 5 deletions

View File

@ -756,7 +756,7 @@ are detected, the user is notified.")))
#t)) #t))
(add-after 'unpack 'set-lua-paths (add-after 'unpack 'set-lua-paths
(lambda* (#:key inputs #:allow-other-keys) (lambda* (#:key inputs #:allow-other-keys)
(let* ((lua-version "5.2") (let* ((lua-version "5.1")
(lua-cpath-spec (lua-cpath-spec
(lambda (prefix) (lambda (prefix)
(let ((path (string-append prefix "/lib/lua/" lua-version))) (let ((path (string-append prefix "/lib/lua/" lua-version)))
@ -783,10 +783,10 @@ are detected, the user is notified.")))
("unibilium" ,unibilium) ("unibilium" ,unibilium)
("jemalloc" ,jemalloc) ("jemalloc" ,jemalloc)
("libiconv" ,libiconv) ("libiconv" ,libiconv)
("lua" ,lua-5.2) ("lua" ,lua-5.1)
("lua-lpeg" ,lua5.2-lpeg) ("lua-lpeg" ,lua5.1-lpeg)
("lua-bitop" ,lua5.2-bitop) ("lua-bitop" ,lua5.1-bitop)
("lua-libmpack" ,lua5.2-libmpack))) ("lua-libmpack" ,lua5.1-libmpack)))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config) `(("pkg-config" ,pkg-config)
("gettext" ,gettext-minimal) ("gettext" ,gettext-minimal)