This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch next-master
in repository guix.
The following commit(s) were added to refs/heads/next-master by this push:
new 49d47688c0 gnu: awesome: Add missing input.
49d47688c0 is described below
commit 49d47688c0d939c41a0045db9a347d9bcc8ac8ec
Author: Sergey Trofimov <[email protected]>
AuthorDate: Fri Jan 23 13:50:00 2026 +0100
gnu: awesome: Add missing input.
* gnu/packages/wm.scm (awesome): Set path to xterm.
[arguments]<#:phases>{set-paths}: Substitute xterm path.
[inputs]: Add xterm.
Change-Id: Ic74d9034a4d7907a2a85fa3fe3af3bde6ea61d94
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/wm.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 9905b9a31d..abc357995e 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -1910,7 +1910,8 @@ for wlroots-based Wayland compositors.")
xcb-util-keysyms
xcb-util-renderutil
xcb-util-xrm
- xcb-util-wm))
+ xcb-util-wm
+ xterm))
(arguments
`(#:modules ((guix build cmake-build-system)
(guix build utils)
@@ -1930,6 +1931,9 @@ for wlroots-based Wayland compositors.")
(substitute* "lib/awful/completion.lua"
(("/usr/bin/env")
""))
+ (substitute* '("lib/menubar/utils.lua" "awesomerc.lua")
+ (("(terminal = ).*$" _ p)
+ (string-append p "'" (assoc-ref inputs "xterm")
"/bin/xterm'\n")))
;; 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)))