mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add java-httpcomponents-httpmime.
* gnu/packages/java.scm (java-httpcomponents-httpmime): New variable.
This commit is contained in:
parent
14a671d8f9
commit
cbce5de265
1 changed files with 15 additions and 0 deletions
|
@ -2149,6 +2149,21 @@ feature-rich package implementing the client side of the most recent HTTP
|
|||
standards and recommendations.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public java-httpcomponents-httpmime
|
||||
(package (inherit java-httpcomponents-httpclient)
|
||||
(name "java-httpcomponents-httpmime")
|
||||
(arguments
|
||||
`(#:jar-name "httpcomponents-httpmime.jar"
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda _ (chdir "httpmime") #t)))))
|
||||
(inputs
|
||||
`(("java-httpcomponents-httpclient" ,java-httpcomponents-httpclient)
|
||||
("java-httpcomponents-httpcore" ,java-httpcomponents-httpcore)
|
||||
("java-junit" ,java-junit)
|
||||
("java-hamcrest-core" ,java-hamcrest-core)))))
|
||||
|
||||
(define-public java-commons-cli
|
||||
(package
|
||||
(name "java-commons-cli")
|
||||
|
|
Loading…
Reference in a new issue