3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: neovim: Let build phase return #T.

* gnu/packages/vim.scm (neovim)[arguments]: Return #T from "patch-tic" phase.
This commit is contained in:
Ricardo Wurmus 2019-03-07 13:39:45 +01:00
parent 3b296475bf
commit 3189fad217
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -698,7 +698,8 @@ are detected, the user is notified.")))
(add-after 'unpack 'patch-tic
(lambda _
(substitute* "src/nvim/tui/tui.c"
(("value != NULL") "value != NULL && value != (char *)-1"))))
(("value != NULL") "value != NULL && value != (char *)-1"))
#t))
(add-after 'unpack 'set-lua-paths
(lambda* (#:key inputs #:allow-other-keys)
(let* ((lua-version "5.2")