This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 7061beccb2 gnu: sbcl-cl-posix-mqueue: Format to modern style for all
inputs.
7061beccb2 is described below
commit 7061beccb2f0c2463f2c0177aa7fe4244e862156
Author: jgart <[email protected]>
AuthorDate: Wed Jan 21 11:41:38 2026 -0500
gnu: sbcl-cl-posix-mqueue: Format to modern style for all inputs.
* gnu/packages/lisp-xyz.scm (sbcl-cl-posix-mqueue): Format to modern style.
[native-inputs]: Format to modern style.
[inputs]: Format to modern style.
Change-Id: I3ce9decc7a106bb98168137cdcbb218b48c25093
---
gnu/packages/lisp-xyz.scm | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index d8d2338489..347a822da6 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -9316,14 +9316,14 @@ using bindings to the portaudio library.")
(("librt.so" all)
(string-append (assoc-ref inputs "glibc") "/lib/" all))))))))
(native-inputs
- `(("cl-ppcre" ,sbcl-cl-ppcre)
- ("rove" ,sbcl-rove)))
+ (list sbcl-cl-ppcre
+ sbcl-rove))
(inputs
- `(("alexandria" ,sbcl-alexandria)
- ("babel" ,sbcl-babel)
- ("cffi" ,sbcl-cffi)
- ("glibc" ,glibc)
- ("local-time" ,sbcl-local-time)))
+ (list sbcl-alexandria
+ sbcl-babel
+ sbcl-cffi
+ glibc
+ sbcl-local-time))
(home-page "https://github.com/xFA25E/cl-posix-mqueue")
(synopsis "Common Lisp binding to POSIX mqueue")
(description