gnu: guile-email: Update to 0.2.0.
* gnu/packages/guile-xyz.scm (guile-email): Update to 0.2.0. [source]: Update URI. [native-inputs]: Remove autoconf and automake. Add lzip. [arguments]: Add GUILE_AUTO_COMPILE=0 to #:make-flags. [home-page]: Update URI. [description]: Update description.
This commit is contained in:
parent
32c517a327
commit
db18d87ac3
|
@ -907,27 +907,30 @@ tracker's SOAP service, such as @url{https://bugs.gnu.org}.")
|
||||||
(define-public guile-email
|
(define-public guile-email
|
||||||
(package
|
(package
|
||||||
(name "guile-email")
|
(name "guile-email")
|
||||||
(version "0.1.0")
|
(version "0.2.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"https://git.systemreboot.net/guile-email/snapshot/guile-email-"
|
"https://guile-email.systemreboot.net/releases/guile-email-"
|
||||||
version ".tar.xz"))
|
version ".tar.lz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0p2v8q2kkz8m6vf2rsjvz3dj1mvnx7dxakjf72dwkndbgk3rp79f"))))
|
"05pm0rwdxhjdlpmvhn0kyfslph6j5m1gv76givs0hshb30nirl2x"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("autoconf" ,autoconf)
|
("lzip" ,lzip)))
|
||||||
("automake" ,automake)))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("guile" ,guile-2.2)))
|
`(("guile" ,guile-2.2)))
|
||||||
(home-page "https://git.systemreboot.net/guile-email")
|
(arguments
|
||||||
|
'(#:make-flags '("GUILE_AUTO_COMPILE=0"))) ; to prevent guild warnings
|
||||||
|
(home-page "https://guile-email.systemreboot.net")
|
||||||
(synopsis "Guile email parser")
|
(synopsis "Guile email parser")
|
||||||
(description "This package provides an email parser written in pure
|
(description "guile-email is a collection of email utilities implemented
|
||||||
Guile.")
|
in pure guile. It supports parsing MIME (Multipurpose Internet Mail
|
||||||
|
Extensions) compliant email messages and reading emails from the mbox
|
||||||
|
format.")
|
||||||
(license license:agpl3+)))
|
(license license:agpl3+)))
|
||||||
|
|
||||||
(define-public guile-debbugs-next
|
(define-public guile-debbugs-next
|
||||||
|
|
Loading…
Reference in New Issue