guix_mirror_bot pushed a commit to branch next-master
in repository guix.

commit 804ddea52615b0fbd224043f779475d6b2db84f6
Author: Mathieu Lirzin <[email protected]>
AuthorDate: Mon Jan 5 12:00:23 2026 +0100

    gnu: Add clojure-core-specs-alpha.
    
    * gnu/packages/clojure.scm (clojure-core-specs-alpha): New variable.
    
    Change-Id: Ib74130d977c4cc40038f3f44e10875d953915e1b
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/clojure.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm
index b000daaec2..1ef260f1b0 100644
--- a/gnu/packages/clojure.scm
+++ b/gnu/packages/clojure.scm
@@ -1131,3 +1131,29 @@ Clojure depends on this library and provides it.  Thus 
it is not recommended
 to add a direct dependency on this package.")
     (home-page "https://github.com/clojure/spec.alpha";)
     (license license:epl1.0)))
+
+(define-public clojure-core-specs-alpha
+  (package
+    (name "clojure-core-specs-alpha")
+    (version "0.5.81")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/clojure/core.specs.alpha";)
+                     (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1hy060mb2hxirynkk36plx1rvpj6i2ldn8mvnwfd02wvjvh57dad"))))
+    (build-system clojure-build-system)
+    (arguments '(#:source-dirs '("src/main/clojure")
+                 #:test-dirs '()
+                 #:doc-dirs '()))
+    (synopsis "Describe clojure.core macros and functions")
+    (description
+     "This package contains specs to describe Clojure core macros and 
functions.
+
+Clojure depends on this library and provides it.  Thus it is not recommended
+to add a direct dependency on this package.")
+    (home-page "https://github.com/clojure/core.specs.alpha";)
+    (license license:epl1.0)))

Reply via email to