mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add java-javax-mail.
* gnu/packages/java.scm (java-javax-mail): New variable.
This commit is contained in:
parent
095494ed6c
commit
a5cdcf6c09
1 changed files with 26 additions and 0 deletions
|
@ -2915,6 +2915,32 @@ (define-public java-eclipse-jdt-core
|
||||||
development tools.")
|
development tools.")
|
||||||
(license license:epl1.0)))
|
(license license:epl1.0)))
|
||||||
|
|
||||||
|
(define-public java-javax-mail
|
||||||
|
(package
|
||||||
|
(name "java-javax-mail")
|
||||||
|
(version "1.5.6")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://repo1.maven.org/maven2/"
|
||||||
|
"com/sun/mail/javax.mail/"
|
||||||
|
version "/javax.mail-"
|
||||||
|
version "-sources.jar"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0sdlfgsc2b5s89xv1261y8i0jijcja019k2x1c8ngfn582w4jly9"))))
|
||||||
|
(build-system ant-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; no tests
|
||||||
|
#:jar-name "javax-mail.jar"))
|
||||||
|
(home-page "https://javamail.java.net")
|
||||||
|
(synopsis "Reference implementation of the JavaMail API")
|
||||||
|
(description
|
||||||
|
"This package provides versions of the JavaMail API implementation, IMAP,
|
||||||
|
SMTP, and POP3 service providers, some examples, and documentation for the
|
||||||
|
JavaMail API.")
|
||||||
|
;; GPLv2 only with "classpath exception".
|
||||||
|
(license license:gpl2)))
|
||||||
|
|
||||||
(define-public java-log4j-api
|
(define-public java-log4j-api
|
||||||
(package
|
(package
|
||||||
(name "java-log4j-api")
|
(name "java-log4j-api")
|
||||||
|
|
Loading…
Reference in a new issue