diff options
Diffstat (limited to 'gnu/packages/clojure.scm')
| -rw-r--r-- | gnu/packages/clojure.scm | 24 |
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 | |||
| 1077 | the same way for every operation on every service.") | 1077 | the same way for every operation on every service.") |
| 1078 | (home-page "https://github.com/cognitect-labs/aws-api") | 1078 | (home-page "https://github.com/cognitect-labs/aws-api") |
| 1079 | (license license:asl2.0))) | 1079 | (license license:asl2.0))) |
| 1080 | |||
| 1081 | (define-public clojure-java-classpath | ||
| 1082 | (package | ||
| 1083 | (name "clojure-java-classpath") | ||
| 1084 | (version "1.1.1") | ||
| 1085 | (source (origin | ||
| 1086 | (method git-fetch) | ||
| 1087 | (uri (git-reference | ||
| 1088 | (url "https://github.com/clojure/java.classpath") | ||
| 1089 | (commit (string-append "v" version)))) | ||
| 1090 | (file-name (git-file-name name version)) | ||
| 1091 | (sha256 | ||
| 1092 | (base32 | ||
| 1093 | "1k34yrx3gmvf46984zdgn2vb98ixf47q1vgh9p78bgmpyhrwzx2z")))) | ||
| 1094 | (build-system clojure-build-system) | ||
| 1095 | (arguments '(#:source-dirs '("src/main/clojure") | ||
| 1096 | #:test-dirs '("src/test/clojure") | ||
| 1097 | #:doc-dirs '())) | ||
| 1098 | (synopsis "Examine the Java classpath from Clojure programs") | ||
| 1099 | (description | ||
| 1100 | "This package provides utilities for dealing with the JVM's classpath from | ||
| 1101 | Clojure.") | ||
| 1102 | (home-page "https://github.com/clojure/java.classpath") | ||
| 1103 | (license license:epl1.0))) | ||
