summaryrefslogtreecommitdiff
path: root/gnu/packages/clojure.scm
diff options
context:
space:
mode:
authorMathieu Lirzin <mthl@gnu.org>2025-12-27 07:22:35 +0100
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:31:07 +0100
commit9ce0a1fe0b8f4f91311ad05b45e8b3125c98c1b1 (patch)
treee0806b552aaf721962f5e2d2277cb03e26d37318 /gnu/packages/clojure.scm
parent3701dc9beace545085e0effe4ab724290643c24d (diff)
gnu: Add clojure-java-classpath.
* gnu/packages/clojure.scm (clojure-java-classpath): New variable. Change-Id: I46e87f1e7b41c77d0a7097729fe29176545c7e86 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.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm
index 8cae8f1cea2..b5a41335319 100644
--- a/gnu/packages/clojure.scm
+++ b/gnu/packages/clojure.scm
@@ -1077,3 +1077,27 @@ an operation on the service. invoke takes a map and returns a map, and works
the same way for every operation on every service.")
(home-page "https://github.com/cognitect-labs/aws-api")
(license license:asl2.0)))
+
+(define-public clojure-java-classpath
+ (package
+ (name "clojure-java-classpath")
+ (version "1.1.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/clojure/java.classpath")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1k34yrx3gmvf46984zdgn2vb98ixf47q1vgh9p78bgmpyhrwzx2z"))))
+ (build-system clojure-build-system)
+ (arguments '(#:source-dirs '("src/main/clojure")
+ #:test-dirs '("src/test/clojure")
+ #:doc-dirs '()))
+ (synopsis "Examine the Java classpath from Clojure programs")
+ (description
+ "This package provides utilities for dealing with the JVM's classpath from
+Clojure.")
+ (home-page "https://github.com/clojure/java.classpath")
+ (license license:epl1.0)))