guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 867438812466f043f7440e1034f79d1ad94d01dd
Author: vga <[email protected]>
AuthorDate: Wed Dec 24 16:25:49 2025 +0100

    gnu: Add cl-forms.
    
    * gnu/packages/lisp-xyz.scm (cl-forms, sbcl-cl-forms): New variables.
    
    Change-Id: I3197e5b66e69daf5740f856b8f150acaf661b853
    Signed-off-by: jgart <[email protected]>
---
 gnu/packages/lisp-xyz.scm | 49 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 84046094c8..96ec33a83a 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -6318,6 +6318,55 @@ Macros and symbol-macros are fully expanded and all 
special forms, except
        ;; See <https://github.com/alex-gutev/cl-form-types/issues/22>.
        '(#:tests? #f)))))
 
+(define-public sbcl-cl-forms
+  (let ((commit "680953089c4a4d6201e639ac8188c46656d3f693")
+        (revision "0"))
+    (package
+      (name "sbcl-cl-forms")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/mmontone/cl-forms";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "19bmcvg89ydgkz1rjds0q0ydrpj4dxcvgnqgjjkbsi1h8yw18fsj"))))
+      (build-system asdf-build-system/sbcl)
+      (native-inputs (list sbcl-fiveam sbcl-trivial-open-browser))
+      (inputs (list sbcl-alexandria
+                    sbcl-cl-ppcre
+                    sbcl-ironclad
+                    sbcl-uuid
+                    sbcl-clavier
+                    sbcl-fmt
+                    sbcl-cl-str
+                    sbcl-cl-base64
+                    sbcl-cl-css
+                    sbcl-cl-who
+                    sbcl-djula
+                    sbcl-hunchentoot
+                    sbcl-lack
+                    sbcl-ningle
+                    sbcl-cl-peppol))
+      (arguments
+       '(#:asd-systems '("cl-forms" "cl-forms.core" "cl-forms.who"
+                         "cl-forms.djula" "cl-forms.ningle" 
"cl-forms.peppol")))
+      (home-page "https://github.com/mmontone/cl-forms";)
+      (synopsis "Web forms handling library for Common Lisp")
+      (description
+       "@code{cl-forms} provides functionality for managing web forms in
+Common Lisp.
+
+It supports various field types (string, boolean, integer, email,
+password, and more) and allows rendering through multiple backends,
+such as @code{cl-who} and @code{djula}.")
+      (license license:expat))))
+
+(define-public cl-forms
+  (sbcl-package->cl-source-package sbcl-cl-forms))
+
 (define-public sbcl-cl-freetype2
   (let ((commit "8bcb232b319a66fb700eaea88d0b308a837bce04")
         (revision "1"))

Reply via email to