diff options
| author | Mathieu Lirzin <mthl@gnu.org> | 2026-01-05 12:00:23 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:31:08 +0100 |
| commit | eb61e0ce4af5273ec07f3660207b353375cdfb36 (patch) | |
| tree | 113e0fefe2222f990e2db37098544be5071a9af7 /gnu/packages/clojure.scm | |
| parent | 63e9052aaf15d859634555d4f0948c9ff07e968e (diff) | |
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 <ludo@gnu.org>
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/clojure.scm')
| -rw-r--r-- | gnu/packages/clojure.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm index b000daaec27..1ef260f1b05 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 | |||
| 1131 | to add a direct dependency on this package.") | 1131 | to add a direct dependency on this package.") |
| 1132 | (home-page "https://github.com/clojure/spec.alpha") | 1132 | (home-page "https://github.com/clojure/spec.alpha") |
| 1133 | (license license:epl1.0))) | 1133 | (license license:epl1.0))) |
| 1134 | |||
| 1135 | (define-public clojure-core-specs-alpha | ||
| 1136 | (package | ||
| 1137 | (name "clojure-core-specs-alpha") | ||
| 1138 | (version "0.5.81") | ||
| 1139 | (source (origin | ||
| 1140 | (method git-fetch) | ||
| 1141 | (uri (git-reference | ||
| 1142 | (url "https://github.com/clojure/core.specs.alpha") | ||
| 1143 | (commit (string-append "v" version)))) | ||
| 1144 | (file-name (git-file-name name version)) | ||
| 1145 | (sha256 | ||
| 1146 | (base32 | ||
| 1147 | "1hy060mb2hxirynkk36plx1rvpj6i2ldn8mvnwfd02wvjvh57dad")))) | ||
| 1148 | (build-system clojure-build-system) | ||
| 1149 | (arguments '(#:source-dirs '("src/main/clojure") | ||
| 1150 | #:test-dirs '() | ||
| 1151 | #:doc-dirs '())) | ||
| 1152 | (synopsis "Describe clojure.core macros and functions") | ||
| 1153 | (description | ||
| 1154 | "This package contains specs to describe Clojure core macros and functions. | ||
| 1155 | |||
| 1156 | Clojure depends on this library and provides it. Thus it is not recommended | ||
| 1157 | to add a direct dependency on this package.") | ||
| 1158 | (home-page "https://github.com/clojure/core.specs.alpha") | ||
| 1159 | (license license:epl1.0))) | ||
