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 d65b8b4fa1 gnu: Add sbcl-mito-auth
d65b8b4fa1 is described below

commit d65b8b4fa119c5bae519e22a5b7efee25229c8d1
Author: vga <[email protected]>
AuthorDate: Tue Nov 25 17:20:33 2025 +0000

    gnu: Add sbcl-mito-auth
    
    gnu/packages/lisp-xyz.scm (sbcl-mito-auth, cl-mito-auth, ecl-mito-auth): New
    variables.
    
    Change-Id: I0a300a818dd8a83355074168fbc0c39dd32d3c71
    Signed-off-by: jgart <[email protected]>
---
 gnu/packages/lisp-xyz.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 52fef4dfa9..55602a0df7 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -23121,6 +23121,36 @@ like Ruby's ActiveRecord.
        ;; FIXME: Tests never end.
        '(#:tests? #f)))))
 
+(define-public sbcl-mito-auth
+  (let ((commit "262f0f1c132195daa8840e69ece2780111383d05")
+        (revision "0"))
+    (package
+      (name "sbcl-mito-auth")
+      (version (git-version "0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/fukamachi/mito-auth/";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "03k4wgyyvyx7f6nznfyl1mrms9z39pkwn4wnpwj8jfsg3zcny0k3"))))
+      (build-system asdf-build-system/sbcl)
+      (inputs (list sbcl-mito sbcl-ironclad sbcl-babel))
+      (home-page "https://github.com/fukamachi/mito-auth/";)
+      (synopsis "Mito mixin class for user authorization")
+      (description
+       "@code{mito-auth} provides a @code{mito} mixin class for user
+authorization.")
+      (license license:llgpl))))
+
+(define-public cl-mito-auth
+  (sbcl-package->cl-source-package sbcl-mito-auth))
+
+(define-public ecl-mito-auth
+  (sbcl-package->ecl-package sbcl-mito-auth))
+
 (define-public sbcl-mk-string-metrics
   (package
     (name "sbcl-mk-string-metrics")

Reply via email to