From 3765eb786c0ef2ac85ab36f0da37e64569a86be6 Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Thu, 5 Mar 2026 13:33:38 +0900 Subject: 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 --- gnu/packages/text-editors.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu') 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)) -- cgit v1.3