mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: Add rust-rustls-native-certs-0.7.
* gnu/packages/crates-tls.scm (rust-rustls-native-certs-0.7): New variable. (rust-rustls-native-certs-0.6): Inherit from rust-rustls-native-certs-0.7. Change-Id: Ic66c11b391be69929d0884a060d9a3bcdbfd3406 Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
51d49b67c6
commit
5ec3704262
1 changed files with 34 additions and 8 deletions
|
@ -1254,8 +1254,41 @@ (define-public rust-rustls-ffi-0.8
|
||||||
(description "Rustls bindings for non-Rust languages")
|
(description "Rustls bindings for non-Rust languages")
|
||||||
(license (list license:asl2.0 license:isc license:expat))))
|
(license (list license:asl2.0 license:isc license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-rustls-native-certs-0.7
|
||||||
|
(package
|
||||||
|
(name "rust-rustls-native-certs")
|
||||||
|
(version "0.7.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "rustls-native-certs" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "14ip15dcr6fmjzi12lla9cpln7mmkdid4a7wsp344v4kz9gbh7wg"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; Tests want network access.
|
||||||
|
#:cargo-inputs (("rust-openssl-probe" ,rust-openssl-probe-0.1)
|
||||||
|
("rust-rustls-pemfile" ,rust-rustls-pemfile-2)
|
||||||
|
("rust-rustls-pki-types" ,rust-rustls-pki-types-1)
|
||||||
|
("rust-schannel" ,rust-schannel-0.1)
|
||||||
|
("rust-security-framework" ,rust-security-framework-2))
|
||||||
|
#:cargo-development-inputs (("rust-ring" ,rust-ring-0.16)
|
||||||
|
("rust-rustls" ,rust-rustls-0.22)
|
||||||
|
("rust-rustls-webpki" ,rust-rustls-webpki-0.102)
|
||||||
|
("rust-serial-test" ,rust-serial-test-2)
|
||||||
|
("rust-untrusted" ,rust-untrusted-0.7)
|
||||||
|
("rust-webpki-roots" ,rust-webpki-roots-0.26)
|
||||||
|
("rust-x509-parser" ,rust-x509-parser-0.15))))
|
||||||
|
(home-page "https://github.com/ctz/rustls-native-certs")
|
||||||
|
(synopsis "Use the platform native certificate store with rustls")
|
||||||
|
(description "@code{rustls-native-certs} allows rustls to use the platform
|
||||||
|
native certificate store.")
|
||||||
|
(license (list license:asl2.0 license:isc license:expat))))
|
||||||
|
|
||||||
(define-public rust-rustls-native-certs-0.6
|
(define-public rust-rustls-native-certs-0.6
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-rustls-native-certs-0.7)
|
||||||
(name "rust-rustls-native-certs")
|
(name "rust-rustls-native-certs")
|
||||||
(version "0.6.3")
|
(version "0.6.3")
|
||||||
(source
|
(source
|
||||||
|
@ -1265,7 +1298,6 @@ (define-public rust-rustls-native-certs-0.6
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "007zind70rd5rfsrkdcfm8vn09j8sg02phg9334kark6rdscxam9"))))
|
(base32 "007zind70rd5rfsrkdcfm8vn09j8sg02phg9334kark6rdscxam9"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; Tests want network access.
|
`(#:tests? #f ; Tests want network access.
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
|
@ -1280,13 +1312,7 @@ (define-public rust-rustls-native-certs-0.6
|
||||||
("rust-serial-test" ,rust-serial-test-2)
|
("rust-serial-test" ,rust-serial-test-2)
|
||||||
("rust-untrusted" ,rust-untrusted-0.7)
|
("rust-untrusted" ,rust-untrusted-0.7)
|
||||||
("rust-webpki-roots" ,rust-webpki-roots-0.23)
|
("rust-webpki-roots" ,rust-webpki-roots-0.23)
|
||||||
("rust-x509-parser" ,rust-x509-parser-0.15))))
|
("rust-x509-parser" ,rust-x509-parser-0.15))))))
|
||||||
(home-page "https://github.com/ctz/rustls-native-certs")
|
|
||||||
(synopsis "Use the platform native certificate store with rustls")
|
|
||||||
(description "@code{rustls-native-certs} allows rustls to use the platform
|
|
||||||
native certificate store.")
|
|
||||||
(license
|
|
||||||
(list license:asl2.0 license:isc license:expat))))
|
|
||||||
|
|
||||||
(define-public rust-rustls-native-certs-0.5
|
(define-public rust-rustls-native-certs-0.5
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue