[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
34/40: gnu: awesome: Add 'bash' input for 'wrap-program'.
From: |
guix-commits |
Subject: |
34/40: gnu: awesome: Add 'bash' input for 'wrap-program'. |
Date: |
Sat, 21 Oct 2023 01:53:18 -0400 (EDT) |
apteryx pushed a commit to branch core-updates
in repository guix.
commit 65eb466c9225da51b904ac92d741e1f6dbde71cd
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Fri Jul 2 12:07:04 2021 +0200
gnu: awesome: Add 'bash' input for 'wrap-program'.
It is required for cross-compilation.
* gnu/packages/wm.scm (awesome): Delete trailing #t.
[inputs]: Add 'bash-minimal'.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Change-Id: I3dd64b3ddc2884bd269ec5d07a58ef8944e848ff
---
gnu/packages/wm.scm | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 4dcdc18df9..22f1241060 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -1210,7 +1210,8 @@ for wlroots-based Wayland compositors.")
pkg-config
xmlto))
(inputs
- (list cairo
+ (list bash-minimal
+ cairo
dbus
gdk-pixbuf
glib
@@ -1291,8 +1292,7 @@ for wlroots-based Wayland compositors.")
(let* ((out (assoc-ref outputs "out"))
(awesome (string-append out "/bin/awesome")))
(substitute* (string-append out
"/share/xsessions/awesome.desktop")
- (("Exec=awesome") (string-append "Exec=" awesome)))
- #t)))
+ (("Exec=awesome") (string-append "Exec=" awesome))))))
(add-after 'install 'wrap
(lambda* (#:key inputs outputs #:allow-other-keys)
(let* ((awesome (assoc-ref outputs "out"))
@@ -1305,8 +1305,7 @@ for wlroots-based Wayland compositors.")
`("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)))
- #t))))))
+ `("LD_LIBRARY_PATH" suffix (,cairo)))))))))
(home-page "https://awesomewm.org/")
(synopsis "Highly configurable window manager")
(description
- 37/40: gnu: virtualization: Add 'bash' input for 'wrap-program'., (continued)
- 37/40: gnu: virtualization: Add 'bash' input for 'wrap-program'., guix-commits, 2023/10/21
- 19/40: gnu: xfce: Add 'bash' input for 'wrap-program'., guix-commits, 2023/10/21
- 24/40: gnu: emulators: Add 'bash' input for 'wrap-program'., guix-commits, 2023/10/21
- 27/40: gnu: dirvish: Add 'bash' input for 'wrap-program'., guix-commits, 2023/10/21
- 38/40: gnu: texlive-biber: Add 'bash' input for 'wrap-program'., guix-commits, 2023/10/21
- 39/40: gnu: fzf: Add 'bash-minimal' input for 'wrap-program'., guix-commits, 2023/10/21
- 40/40: gnu: blanket: Add 'bash' input for 'wrap-program'., guix-commits, 2023/10/21
- 12/40: gnu: remind: Add 'bash' input for 'wrap-program'., guix-commits, 2023/10/21
- 20/40: gnu: web: Add 'bash' input for 'wrap-program'., guix-commits, 2023/10/21
- 23/40: gnu: text-editors: Add 'bash' input for 'wrap-program'., guix-commits, 2023/10/21
- 34/40: gnu: awesome: Add 'bash' input for 'wrap-program'.,
guix-commits <=