This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 3765eb786c gnu: vis: Fix Lua paths.
3765eb786c is described below
commit 3765eb786c0ef2ac85ab36f0da37e64569a86be6
Author: Nguyễn Gia Phong <[email protected]>
AuthorDate: Thu Mar 5 13:33:38 2026 +0900
gnu: vis: Fix Lua paths.
* gnu/packages/text-editors.scm (vis)[arguments]<#:phases>{wrap-binary}:
Use semicolon (;) as the separator in GUIX_LUA_PATH and GUIX_LUA_CPATH.
Fixes: e1fc5936b117 ("gnu: vis: [...] wrap GUIX_LUA_{,C}PATH.")
Change-Id: I8a32d74042f0e85fd3f9d98854a4a5bd8d220363
Signed-off-by: Gabriel Wicki <[email protected]>
---
gnu/packages/text-editors.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index ea0d322248..8753763ac5 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -373,8 +373,8 @@ intuitive, while also taking advantage of the capabilities
of modern terminals."
(lambda* (#:key inputs outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out")))
(wrap-program (string-append out "/bin/vis")
- `("GUIX_LUA_PATH" ":" prefix (,(getenv "GUIX_LUA_PATH")))
- `("GUIX_LUA_CPATH" ":" prefix (,(getenv "GUIX_LUA_CPATH"))))
+ `("GUIX_LUA_PATH" ";" prefix (,(getenv "GUIX_LUA_PATH")))
+ `("GUIX_LUA_CPATH" ";" prefix (,(getenv "GUIX_LUA_CPATH"))))
#t)))
(add-after 'wrap-binary 'check
(assoc-ref %standard-phases 'check))