gnu: neovim: Let build phase return #T.

* gnu/packages/vim.scm (neovim)[arguments]: Return #T from "patch-tic" phase.
master
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
1 changed files with 2 additions and 1 deletions

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")