gnu: Add java-fest-util.

* gnu/packages/java.scm (java-fest-util): New variable.
This commit is contained in:
Julien Lepiller 2017-10-24 22:14:53 +02:00
parent e84b899d50
commit 7a343e971a
No known key found for this signature in database
GPG key ID: 43111F4520086A0C

View file

@ -6374,3 +6374,26 @@ (define-public java-bsh
scripting conveniences such as loose types, commands, and method closures like scripting conveniences such as loose types, commands, and method closures like
those in Perl and JavaScript.") those in Perl and JavaScript.")
(license license:asl2.0))) (license license:asl2.0)))
(define-public java-fest-util
(package
(name "java-fest-util")
(version "1.2.5")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/alexruiz/fest-util/"
"archive/fest-util-" version ".tar.gz"))
(sha256
(base32
"05g6hljz5mdaakk8d7g32klbhz9bdwp3qlj6rdaggdidxs3x1sb8"))))
(build-system ant-build-system)
(arguments
`(#:jar-name "java-fest-util.jar"
#:source-dir "src/main/java"))
(native-inputs
`(("junit" ,java-junit)
("hamcrest" ,java-hamcrest-core)))
(home-page "https://github.com/alexruiz/fest-util")
(synopsis "FEST common utilities")
(description "Common utilities used in all FEST module.")
(license license:asl2.0)))