neovim: Update to 0.3.1.
* gnu/packages/vim.scm (neovim): Update to 0.3.1. [arguments]: Add #:configure-flags.
This commit is contained in:
parent
24b765b6a6
commit
4168e3faf2
|
@ -652,7 +652,7 @@ are detected, the user is notified.")))
|
||||||
(define-public neovim
|
(define-public neovim
|
||||||
(package
|
(package
|
||||||
(name "neovim")
|
(name "neovim")
|
||||||
(version "0.2.0")
|
(version "0.3.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -661,12 +661,13 @@ are detected, the user is notified.")))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1db27zm6cldm1aw0570vii1bxc16a34x8lissl1h9rizsbwn7qkj"))))
|
"08mdffcw4k503bccm1plq8r7hjx4w61w5jyfdj80fr079hnkjpmw"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:modules ((srfi srfi-26)
|
`(#:modules ((srfi srfi-26)
|
||||||
(guix build cmake-build-system)
|
(guix build cmake-build-system)
|
||||||
(guix build utils))
|
(guix build utils))
|
||||||
|
#:configure-flags '("-DPREFER_LUA:BOOL=YES")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'set-lua-paths
|
(add-after 'unpack 'set-lua-paths
|
||||||
|
|
Loading…
Reference in New Issue