@@ -804,3 +804,30 @@ (define-public clojure-tools-gitlibs
indicated by git SHAs. This library provides this functionality and also
keeps a cache of git directories and working trees that can be reused.")
(license license:epl1.0)))
+
+(define-public clojure-tools-reader
+ (package
+ (name "clojure-tools-reader")
+ (version "1.3.6")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/clojure/tools.reader")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0rcqq024ysz5g2ad8g6jvhnlpwqym58hd1mywl8c4v3x5628d028"))))
+ (build-system clojure-build-system)
+ (arguments
+ '(#:source-dirs '("src/main/clojure")
+ #:test-dirs '("src/test/clojure")
+ #:doc-dirs '()
+ ;; Tests are not well formed clojure namespaces.
+ #:tests? #f))
+ (home-page "https://github.com/clojure/tools.reader")
+ (synopsis "Clojure reader in Clojure")
+ (description "A reader for Clojure source code and data structures written
+in Clojure. Offers all functionality of Clojure's default reader,
+LispReader.java, with additional features added.")
+ (license license:epl1.0)))