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:
parent
3b296475bf
commit
3189fad217
1 changed files with 2 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue