mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-29 07:42:23 -05:00
gnu: Add rust-mailparse-0.14.
* gnu/packages/crates-io.scm (rust-mailparse-0.14): New variable. (rust-mailparse-0.13): Inherit from rust-mailparse-0.14.
This commit is contained in:
parent
9d869693ff
commit
1a37021d64
1 changed files with 35 additions and 15 deletions
|
@ -36114,29 +36114,49 @@ (define-public rust-maildir-0.5
|
||||||
"This package provides a simple library for maildir manipulation.")
|
"This package provides a simple library for maildir manipulation.")
|
||||||
(license license:bsd-0)))
|
(license license:bsd-0)))
|
||||||
|
|
||||||
(define-public rust-mailparse-0.13
|
(define-public rust-mailparse-0.14
|
||||||
(package
|
(package
|
||||||
(name "rust-mailparse")
|
(name "rust-mailparse")
|
||||||
(version "0.13.5")
|
(version "0.14.0")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method url-fetch)
|
||||||
(method url-fetch)
|
(uri (crate-uri "mailparse" version))
|
||||||
(uri (crate-uri "mailparse" version))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(sha256
|
||||||
(sha256
|
(base32
|
||||||
(base32 "1qacyzfl3wsl745b92w9gj0mjg43rcwg99l96rmg8l1sq5pm4vy0"))))
|
"1al0yb9wgy26ihd0gm4x1dk9rsv23wrmp2qw1lk4f04cbw7mfmkb"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; Doc tests fail.
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-charset" ,rust-charset-0.1)
|
||||||
|
("rust-data-encoding" ,rust-data-encoding-2)
|
||||||
|
("rust-quoted-printable" ,rust-quoted-printable-0.4))
|
||||||
|
#:cargo-development-inputs (("rust-ouroboros" ,rust-ouroboros-0.14))))
|
||||||
|
(home-page "https://github.com/staktrace/mailparse/blob/master/README.md")
|
||||||
|
(synopsis "Simple parser for MIME e-mail messages")
|
||||||
|
(description
|
||||||
|
"This package provides a simple parser for MIME e-mail messages.")
|
||||||
|
(license license:bsd-0)))
|
||||||
|
|
||||||
|
(define-public rust-mailparse-0.13
|
||||||
|
(package
|
||||||
|
(inherit rust-mailparse-0.14)
|
||||||
|
(name "rust-mailparse")
|
||||||
|
(version "0.13.5")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "mailparse" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1qacyzfl3wsl745b92w9gj0mjg43rcwg99l96rmg8l1sq5pm4vy0"))))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:skip-build? #t
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
(("rust-base64" ,rust-base64-0.13)
|
(("rust-base64" ,rust-base64-0.13)
|
||||||
("rust-charset" ,rust-charset-0.1)
|
("rust-charset" ,rust-charset-0.1)
|
||||||
("rust-quoted-printable" ,rust-quoted-printable-0.4))))
|
("rust-quoted-printable" ,rust-quoted-printable-0.4))))))
|
||||||
(home-page "https://github.com/staktrace/mailparse")
|
|
||||||
(synopsis "Simple parser for MIME e-mail messages")
|
|
||||||
(description
|
|
||||||
"This package provides a simple parser for MIME e-mail messages.")
|
|
||||||
(license license:bsd-0)))
|
|
||||||
|
|
||||||
(define-public rust-malloc-buf-0.0
|
(define-public rust-malloc-buf-0.0
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue