diff options
| author | Mathieu Lirzin <mthl@gnu.org> | 2026-01-05 16:50:48 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:31:11 +0100 |
| commit | 0baede4918eda68eb481429ad310a150c31113a4 (patch) | |
| tree | 3cba420b605759cc736f1b692599ad79f4d51c03 /gnu/packages/clojure.scm | |
| parent | 6872ff5cf0c09148819f4b31cf8b07df16a1a826 (diff) | |
gnu: Add clojure-test-generative.
* gnu/packages/clojure.scm (clojure-test-generative): New variable.
Change-Id: I4798cca783b6e0c81243a96224002de65839068a
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 | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm index 39e4309e8b9..b28e2d4a40e 100644 --- a/gnu/packages/clojure.scm +++ b/gnu/packages/clojure.scm | |||
| @@ -1210,3 +1210,28 @@ This is only about namespace dependencies within a single project. It has | |||
| 1210 | nothing to do with Leiningen, Maven, JAR files, or repositories.") | 1210 | nothing to do with Leiningen, Maven, JAR files, or repositories.") |
| 1211 | (home-page "https://github.com/clojure/tools.namespace") | 1211 | (home-page "https://github.com/clojure/tools.namespace") |
| 1212 | (license license:epl1.0))) | 1212 | (license license:epl1.0))) |
| 1213 | |||
| 1214 | (define-public clojure-test-generative | ||
| 1215 | (package | ||
| 1216 | (name "clojure-test-generative") | ||
| 1217 | (version "1.1.1") | ||
| 1218 | (source (origin | ||
| 1219 | (method git-fetch) | ||
| 1220 | (uri (git-reference | ||
| 1221 | (url "https://github.com/clojure/test.generative") | ||
| 1222 | (commit (string-append "v" version)))) | ||
| 1223 | (file-name (git-file-name name version)) | ||
| 1224 | (sha256 | ||
| 1225 | (base32 | ||
| 1226 | "0lb72cr4s6rgpg18v3jr67ps6wx4p7j7mfzwnfgmm0v8rldlcycf")))) | ||
| 1227 | (build-system clojure-build-system) | ||
| 1228 | (arguments '(#:source-dirs '("src/main/clojure") | ||
| 1229 | #:test-dirs '("src/examples/clojure") | ||
| 1230 | #:doc-dirs '())) | ||
| 1231 | (propagated-inputs (list clojure-tools-namespace | ||
| 1232 | clojure-data-generators)) | ||
| 1233 | (synopsis "Generative test runner") | ||
| 1234 | (description | ||
| 1235 | "This package defines generators functions and property based testing macros.") | ||
| 1236 | (home-page "https://github.com/clojure/test.generative") | ||
| 1237 | (license license:epl1.0))) | ||
