gnu: awesome: Fix command completion in the prompt and Lua paths

* gnu/packages/wm.scm (awesome): Delete useless ‘env’ invocation in lib/awful/completion.lua.  Change the delimiter for LUA_PATH and LUA_CPATH variables.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Ivan Kozlov 2020-07-31 11:18:23 +03:00 committed by Ludovic Courtès
parent dca2f0ea01
commit 1af5e57d87
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -973,6 +973,9 @@ (define-public awesome
(modify-phases %standard-phases
(add-before 'configure 'set-paths
(lambda* (#:key inputs #:allow-other-keys)
(substitute* "lib/awful/completion.lua"
(("/usr/bin/env")
""))
;; The build process needs to load Cairo dynamically.
(let* ((cairo (string-append (assoc-ref inputs "cairo") "/lib"))
(lua-version ,(version-major+minor (package-version lua)))
@ -1021,9 +1024,9 @@ (define-public awesome
(lua-version ,(version-major+minor (package-version lua)))
(lua-lgi (assoc-ref inputs "lua-lgi")))
(wrap-program (string-append awesome "/bin/awesome")
`("LUA_PATH" suffix
`("LUA_PATH" ";" suffix
(,(format #f "~a/share/lua/~a/?.lua" lua-lgi lua-version)))
`("LUA_CPATH" suffix
`("LUA_CPATH" ";" suffix
(,(format #f "~a/lib/lua/~a/?.so" lua-lgi lua-version)))
`("GI_TYPELIB_PATH" ":" prefix (,(getenv "GI_TYPELIB_PATH")))
`("LD_LIBRARY_PATH" suffix (,cairo)))