diff options
author | Julien Lepiller <julien@lepiller.eu> | 2018-05-25 23:35:18 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2018-05-27 18:47:05 +0200 |
commit | 3fa18fe796e02f65ef55ea070cbec35593e19625 (patch) | |
tree | 9f0c3f3006e5be2d8321d398d9c537d70152f2b9 /gnu/packages/java.scm | |
parent | 66006fe5264769ee6705271b41ae29cfd534c9a7 (diff) | |
download | patches-3fa18fe796e02f65ef55ea070cbec35593e19625.tar patches-3fa18fe796e02f65ef55ea070cbec35593e19625.tar.gz |
gnu: Add java-commons-compiler.
* gnu/packages/java.scm (java-commons-compiler): New variable.
Diffstat (limited to 'gnu/packages/java.scm')
-rw-r--r-- | gnu/packages/java.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index e205cccd69..cfd8f81592 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -9986,3 +9986,34 @@ OSGi Service Registry is a goal of this project.") classpath scanning, auto-binding, and dynamic auto-wiring. This package adds Plexus support to the Sisu-Inject container.") (license license:epl1.0))) + +(define-public java-commons-compiler + (package + (name "java-commons-compiler") + (version "3.0.8") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/janino-compiler/janino") + (commit "91aa95686d1e4ca3b16a984a03a38686572331b2"))) + (file-name (string-append name "-" version)) + (sha256 + (base32 + "04hfdl59sgh20qkxzgnibvs8f9hy6n7znxwpk611y5d89977y62r")) + (modules '((guix build utils))) + (snippet + '(begin + (for-each delete-file + (find-files "." "\\.jar$")) + #t)))) + (build-system ant-build-system) + (arguments + `(#:jar-name "commons-compiler.jar" + #:source-dir "commons-compiler/src/main" + #:tests? #f)); no tests + (home-page "https://github.com/janino-compiler/janino") + (synopsis "Java compiler") + (description "Commons-compiler contains an API for janino, including the +@code{IExpressionEvaluator}, @code{IScriptEvaluator}, @code{IClassBodyEvaluator} +and @code{ISimpleCompiler} interfaces.") + (license license:bsd-3))) |