guix_mirror_bot pushed a commit to branch master
in repository guix.

commit ba05e260d2228b5667e48827da0d9d987491963c
Author: jgart <[email protected]>
AuthorDate: Fri Jan 30 03:02:22 2026 -0500

    gnu: sbcl-cl-opengl: Refactor to modern style.
    
    * gnu/packages/lisp-xyz.scm (sbcl-cl-opengl)[inputs]: Refactor to modern 
style.
    
    Change-Id: I833a99e5687af8d8827744c90a126cccf8b9f17f
---
 gnu/packages/lisp-xyz.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 4ffe77117f..4aa693ac22 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -8927,12 +8927,12 @@ online linear classification written in Common Lisp.")
                  (("libglut.so" all)
                   (search-input-file inputs "/lib/libglut.so"))))))))
       (inputs
-       `(("alexandria" ,sbcl-alexandria)
-         ("cffi" ,sbcl-cffi)
-         ("float-features" ,sbcl-float-features)
-         ("freeglut" ,freeglut)
-         ("glu" ,glu)
-         ("mesa" ,mesa)))
+       (list sbcl-alexandria
+             sbcl-cffi
+             sbcl-float-features
+             freeglut
+             glu
+             mesa))
       (home-page "https://github.com/3b/cl-opengl";)
       (synopsis "Common Lisp bindings to OpenGL, GLU and GLUT APIs")
       (description

Reply via email to