guix-patches
[Top][All Lists]
Advanced

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

[bug#75038] [PATCH 07/14] gnu: Add java-axiom-xml-utils.


From: Hartmut Goebel
Subject: [bug#75038] [PATCH 07/14] gnu: Add java-axiom-xml-utils.
Date: Sun, 22 Dec 2024 23:51:39 +0100

* gnu/packages/java-xml.scm (java-axiom-xml-utils): New variable.
---
 gnu/packages/java-xml.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/java-xml.scm b/gnu/packages/java-xml.scm
index 09921224ad..06762ad614 100644
--- a/gnu/packages/java-xml.scm
+++ b/gnu/packages/java-xml.scm
@@ -758,3 +758,26 @@ (define-public java-axiom-base64-utils
     (description "This package provides utility methods to work with base64
 encoded data.")
     (license license:asl2.0)))
+
+(define-public java-axiom-xml-utils
+  (package
+    (name "java-axiom-xml-utils")
+    (version "1.4.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://repo1.maven.org/maven2/";
+                    "org/apache/ws/commons/axiom/xml-utils/" version
+                    "/xml-utils-" version "-sources.jar"))
+              (sha256
+               (base32
+                "0m21cpz8kiij193qqmgckiy9k3fnxjh1hdrkv2h1m8bmcz9w8wp6"))))
+    (build-system ant-build-system)
+    (arguments
+     `(#:tests? #f ;; require too many yet unpackaged packages
+       #:jar-name "axiom-xml-utils.jar"))
+    (home-page "https://ws.apache.org/axiom/";)
+    (synopsis "XML utilities for Apache Axiom Weaver")
+    (description "This package provides XML utilities used by Apache Axiom
+Weaver, anyhow not depending on depending on the Axiom API.")
+    (license license:asl2.0)))
-- 
2.41.1






reply via email to

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