guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#29359] [PATCH 09/31] gnu: Add java-jboss-el-api-spec.


From: Julien Lepiller
Subject: [bug#29359] [PATCH 09/31] gnu: Add java-jboss-el-api-spec.
Date: Sun, 19 Nov 2017 18:57:43 +0100

* gnu/packages/java.scm (java-jboss-el-api-spec): New variable.
---
 gnu/packages/java.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 5d45a9949..e16266b3e 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -7741,3 +7741,28 @@ that is part of the SWT Tools project.")
     (description "Jansi is a Java library that allows you to use ANSI escape
 sequences to format your console output which works on every platform.")
     (license license:asl2.0)))
+
+(define-public java-jboss-el-api-spec
+  (package
+    (name "java-jboss-el-api-spec")
+    (version "3.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://github.com/jboss/jboss-el-api_spec/";
+                                  "archive/jboss-el-api_" version
+                                  "_spec-1.0.7.Final.tar.gz"))
+              (sha256
+               (base32
+                "1j45ljxalwlibxl7g7iv952sjxkw275m8vyxxij8l6wdd5pf0pdh"))))
+    (build-system ant-build-system)
+    (arguments
+     `(#:jar-name "java-jboss-el-api_spec.jar"
+       #:jdk ,icedtea-8))
+    (inputs
+     `(("java-junit" ,java-junit)))
+    (home-page "https://github.com/jboss/jboss-el-api_spec";)
+    (synopsis "JSR-341 Expression Language 3.0 API")
+    (description "Java-jboss-el-api-spec contains an implementation of the
+JSR-341.  It implements an expression language inspired by ECMAScript and
+XPath.  This language is used with JavaServer Pages (JSP).")
+    (license (list license:gpl2 license:cddl1.1)))); either gpl2 only or cddl.
-- 
2.15.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]