mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: Add java-parsson.
* gnu/packages/java.scm (java-parsson): New variable. Change-Id: Ie564924329e4e0a866e6ed5fe9135c841fb66ae8
This commit is contained in:
parent
14e01e313d
commit
dd631a891c
1 changed files with 37 additions and 0 deletions
|
@ -13682,6 +13682,43 @@ (define-public java-jakarta-json
|
||||||
;; with classpath exception
|
;; with classpath exception
|
||||||
(license license:epl2.0)))
|
(license license:epl2.0)))
|
||||||
|
|
||||||
|
(define-public java-parsson
|
||||||
|
(package
|
||||||
|
(name "java-parsson")
|
||||||
|
(version "1.1.5")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/eclipse-ee4j/parsson")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"06vvr6qv1ihnk212gdxg4x0sd61lgxk7wf062s7gym5k2h7fms0p"))))
|
||||||
|
(build-system ant-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:jar-name "parsson.jar"
|
||||||
|
#:source-dir "impl/src/main/java"
|
||||||
|
#:test-dir "impl/src/test"
|
||||||
|
#:use-java-modules? #t
|
||||||
|
#:jdk ,openjdk11
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'copy-resources
|
||||||
|
(lambda _
|
||||||
|
(copy-recursively "impl/src/main/resources"
|
||||||
|
"build/classes"))))))
|
||||||
|
(inputs
|
||||||
|
(list java-jakarta-json))
|
||||||
|
(native-inputs
|
||||||
|
(list java-junit))
|
||||||
|
(home-page "https://github.com/eclipse-ee4j/parsson")
|
||||||
|
(synopsis "Implementation of Jakarta JSON API")
|
||||||
|
(description "Eclipse Parsson is an implementation of the Jakarta JSON
|
||||||
|
Processing specification.")
|
||||||
|
;; with classpath exception
|
||||||
|
(license license:epl2.0)))
|
||||||
|
|
||||||
(define-public java-xmp
|
(define-public java-xmp
|
||||||
(package
|
(package
|
||||||
(name "java-xmp")
|
(name "java-xmp")
|
||||||
|
|
Loading…
Reference in a new issue