gnu: Add java-eclipse-jetty-perf-helper.

* gnu/packages/web.scm (java-eclipse-jetty-perf-helper): New variable.
This commit is contained in:
Julien Lepiller 2017-10-23 20:57:23 +02:00
parent 339bef37cd
commit 1f985e4497
No known key found for this signature in database
GPG key ID: 43111F4520086A0C

View file

@ -5487,3 +5487,21 @@ (define-public java-eclipse-jetty-test-helper
Web Server.")
;; This program is licensed under both epl and asl.
(license (list l:epl1.0 l:asl2.0))))
(define-public java-eclipse-jetty-perf-helper
(package
(inherit java-eclipse-jetty-test-helper)
(name "java-eclipse-jetty-perf-helper")
(arguments
`(#:jar-name "eclipse-jetty-perf-helper.jar"
#:source-dir "src/main/java"
#:tests? #f; no tests
#:jdk ,icedtea-8
#:phases
(modify-phases %standard-phases
(add-before 'configure 'chdir
(lambda _
(chdir "jetty-perf-helper")
#t)))))
(inputs
`(("hdrhistogram" ,java-hdrhistogram)))))