guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 37345f7fa58eac7833050951a8ae5d0b19428829
Author: jgart <[email protected]>
AuthorDate: Fri Jan 30 03:23:42 2026 -0500

    gnu: cl-clsql: Refactor to modern style.
    
    * gnu/packages/lisp-xyz.scm (cl-clsql): Refactor to modern style.
    [native-inputs]: Refactor them.
    [inputs]: Refactor them.
    
    Change-Id: Ifdda02ba6ea2280524b0feefa84c4846f6ff4870
---
 gnu/packages/lisp-xyz.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index d3174ccaba..f6e2eb18a3 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -12605,14 +12605,14 @@ interfaces as well as a functional and an object 
oriented interface.")
   (package
     (inherit (sbcl-package->cl-source-package sbcl-clsql))
     (native-inputs
-     `(("rt" ,cl-rt)))
+     (list cl-rt))
     (inputs
      (list (list mariadb "dev") postgresql sqlite zlib))
     (propagated-inputs
-     `(("cffi" ,cl-cffi)
-       ("md5" ,cl-md5)
-       ("postmodern" ,cl-postmodern)
-       ("uffi" ,cl-uffi)))
+     (list cl-cffi
+           cl-md5
+           cl-postmodern
+           cl-uffi))
     (arguments
      `(#:phases
        ;; asdf-build-system/source has its own phases and does not inherit

Reply via email to