[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#53765] [PATCH 08/17] gnu: Add clojure-tools-analyzer.
From: |
Reily Siegel |
Subject: |
[bug#53765] [PATCH 08/17] gnu: Add clojure-tools-analyzer. |
Date: |
Thu, 03 Feb 2022 19:25:03 -0500 |
* gnu/packages/clojure.scm (clojure-tools-analyzer): New variable.
---
gnu/packages/clojure.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm
index 23635fe1b9..7e188b99b6 100644
--- a/gnu/packages/clojure.scm
+++ b/gnu/packages/clojure.scm
@@ -639,6 +639,37 @@ (define-public clojure-tools-macro
(home-page "https://github.com/clojure/tools.macro")
(license license:epl1.0)))
+(define-public clojure-tools-analyzer
+ (package
+ (name "clojure-tools-analyzer")
+ (version "1.1.0")
+ (home-page "https://github.com/clojure/tools.analyzer")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "19cgxxbav3z3k62hwl34vbi3lilrs4vksa4j8lvswha8sdjs01vh"))))
+ (build-system clojure-build-system)
+ (arguments
+ '(#:source-dirs '("src/main/clojure")
+ #:test-dirs '("src/test/clojure")
+ #:doc-dirs '()))
+ (synopsis "Analyzer for Clojure code, written in Clojure and producing
+AST in EDN")
+ (description "An analyzer for host agnostic Clojure code, written in
+Clojure and producing AST in EDN.
+
+Note that the analyzer in this library should not to be used directly as it
+lacks any knowledge about host-specific special forms and it should only be
+considered as a building platform for host-specific analyzers. Currently the
+following platform specific analyzers written on top of tools.analyzer exist:
+@code{tools.analyzer.jvm}, @code{tools.analyzer.js}")
+ (license license:epl1.0)))
+
(define-public clojure-tools-cli
(package
(name "clojure-tools-cli")
--
2.34.0
- [bug#53765] [PATCH 01/17] gnu: Add clojure-data-priority-map., (continued)
- [bug#53765] [PATCH 02/17] gnu: Add clojure-data-json., Reily Siegel, 2022/02/03
- [bug#53765] [PATCH 03/17] gnu: Add java-eclipse-jetty-client., Reily Siegel, 2022/02/03
- [bug#53765] [PATCH 04/17] gnu: Add clojure-core-cache., Reily Siegel, 2022/02/03
- [bug#53765] [PATCH 05/17] gnu: Add clojure-core-memoize., Reily Siegel, 2022/02/03
- [bug#53765] [PATCH 07/17] gnu: Add clojure-http-kit., Reily Siegel, 2022/02/03
- [bug#53765] [PATCH 06/17] gnu: clojure-data-xml: Exclude failing tests., Reily Siegel, 2022/02/03
- [bug#53765] [PATCH 08/17] gnu: Add clojure-tools-analyzer.,
Reily Siegel <=
- [bug#53765] [PATCH 10/17] gnu: Add clojure-tools-logging., Reily Siegel, 2022/02/03
- [bug#53765] [PATCH 10/17] gnu: Add clojure-tools-logging., Maxime Devos, 2022/02/08
- [bug#53765] [PATCH 12/17] gnu: Add clojure-com-cognitect-http-client., Reily Siegel, 2022/02/03