[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: neovim: Let build phase return #T.
From: |
guix-commits |
Subject: |
01/01: gnu: neovim: Let build phase return #T. |
Date: |
Thu, 7 Mar 2019 07:40:30 -0500 (EST) |
rekado pushed a commit to branch master
in repository guix.
commit 3189fad217e257fb9bef3e632a3f7b36ae05748a
Author: Ricardo Wurmus <address@hidden>
Date: Thu Mar 7 13:39:45 2019 +0100
gnu: neovim: Let build phase return #T.
* gnu/packages/vim.scm (neovim)[arguments]: Return #T from "patch-tic"
phase.
---
gnu/packages/vim.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index a6f4395..6a98f0a 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -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")