gnu: Add rust-sequoia-openpgp-0.9.

* gnu/packages/crates-io.scm (rust-sequoia-openpgp-0.9): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
John Soo 2020-06-17 16:08:02 -07:00 committed by Efraim Flashner
parent 8c1ad1cece
commit 746feeac00
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -24393,6 +24393,65 @@ (define-public rust-semver-parser-0.7
(base32
"18vhypw6zgccnrlm5ps1pwa0khz7ry927iznpr88b87cagr1v2iq"))))))
(define-public rust-sequoia-openpgp-0.9
(package
(name "rust-sequoia-openpgp")
(version "0.9.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "sequoia-openpgp" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"007h2pi7lcph5jf5bxjydm7hjwjai33yk6dic3cxknki22lxlkfw"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-base64" ,rust-base64-0.9)
("rust-buffered-reader" ,rust-buffered-reader-0.9)
("rust-bzip2" ,rust-bzip2-0.3)
("rust-failure" ,rust-failure-0.1)
("rust-flate2" ,rust-flate2-1)
("rust-idna" ,rust-idna-0.1)
("rust-lalrpop" ,rust-lalrpop-0.17)
("rust-lalrpop-util" ,rust-lalrpop-util-0.17)
("rust-lazy-static" ,rust-lazy-static-1)
("rust-memsec" ,rust-memsec-0.5)
("rust-nettle" ,rust-nettle-5)
("rust-quickcheck" ,rust-quickcheck-0.8)
("rust-rand" ,rust-rand-0.6)
("rust-sequoia-rfc2822" ,rust-sequoia-rfc2822-0.9)
("rust-time" ,rust-time-0.1))
#:cargo-development-inputs
(("rust-rpassword" ,rust-rpassword-3))
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'set-missing-env-vars
(lambda* (#:key inputs #:allow-other-keys)
(setenv "LIBCLANG_PATH"
(string-append (assoc-ref inputs "clang") "/lib"))
#t)))))
(native-inputs
`(("pkg-config" ,pkg-config)))
(inputs
`(("clang" ,clang)
("nettle" ,nettle)))
(home-page "https://sequoia-pgp.org/")
(synopsis "OpenPGP data types and associated machinery")
(description
"This crate aims to provide a complete implementation of OpenPGP as
defined by RFC 4880 as well as some extensions (e.g., RFC 6637, which
describes ECC cryptography) for OpenPGP. This includes support for unbuffered
message processing.
A few features that the OpenPGP community considers to be deprecated (e.g.,
version 3 compatibility) have been left out. We have also updated some
OpenPGP defaults to avoid foot guns (e.g., we selected modern algorithm
defaults). If some functionality is missing, please file a bug report.")
(license license:gpl3)))
(define-public rust-sequoia-rfc2822-0.9
(package
(name "rust-sequoia-rfc2822")