mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-23 02:30:30 +02:00
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: e1fc5936b1 ("gnu: vis: [...] wrap GUIX_LUA_{,C}PATH.")
Change-Id: I8a32d74042f0e85fd3f9d98854a4a5bd8d220363
Signed-off-by: Gabriel Wicki <gabriel@erlikon.ch>
This commit is contained in:
committed by
Gabriel Wicki
parent
e22d78cb9d
commit
3765eb786c
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user