mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add java-jdom.
* gnu/packages/java.scm (java-jdom): New variable.
This commit is contained in:
parent
2caf873e86
commit
0b54e190ab
1 changed files with 25 additions and 0 deletions
|
@ -7227,3 +7227,28 @@ (define-public java-kafka-clients
|
||||||
;; Either cddl or gpl2 only.
|
;; Either cddl or gpl2 only.
|
||||||
(license (list license:cddl1.1; actually cddl1.1
|
(license (list license:cddl1.1; actually cddl1.1
|
||||||
license:gpl2)))); with classpath exception
|
license:gpl2)))); with classpath exception
|
||||||
|
|
||||||
|
(define-public java-jdom
|
||||||
|
(package
|
||||||
|
(name "java-jdom")
|
||||||
|
(version "1.1.3")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://jdom.org/dist/binary/archive/jdom-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"07wdpm3jwwc9q38kmdw40fvbmv6jzjrkrf8m0zqs58f79a672wfl"))))
|
||||||
|
(build-system ant-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:build-target "package"
|
||||||
|
#:tests? #f; tests are run as part of the build process
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(replace 'install
|
||||||
|
(install-jars "build")))))
|
||||||
|
(home-page "http://jdom.org/")
|
||||||
|
(synopsis "Access, manipulate, and output XML data")
|
||||||
|
(description "Java-based solution for accessing, manipulating, and
|
||||||
|
outputting XML data from Java code.")
|
||||||
|
(license license:bsd-4)))
|
||||||
|
|
Loading…
Reference in a new issue