guix_mirror_bot pushed a commit to branch master
in repository guix.
commit e56f44edede8e1128634a09e1aac420135b37c71
Author: jgart <[email protected]>
AuthorDate: Fri Jan 30 02:12:06 2026 -0500
gnu: sbcl-messagebox: Refactor to modern style.
* gnu/packages/lisp-xyz.scm (sbcl-messagebox)[inputs]: Refactor to modern
style.
Change-Id: I497e17a491b7ebba8237bd1a9662d3f984b22f9e
---
gnu/packages/lisp-xyz.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 8c846310f3..4c59eea4ad 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -22852,9 +22852,9 @@ RFC 1321 by R. Rivest, published April 1992.")
(string-append "\"" (assoc-ref inputs "zenity")
"/bin/zenity\""))))))))
(inputs
- `(("documentation-utils" ,sbcl-documentation-utils)
- ("trivial-features" ,sbcl-trivial-features)
- ("zenity" ,zenity)))
+ (list sbcl-documentation-utils
+ sbcl-trivial-features
+ zenity))
(home-page "https://shinmera.github.io/messagebox/")
(synopsis "Display a native GUI message box")
(description