mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add rust-x509-signature-0.5.
* gnu/packages/crates-tls.scm (rust-x509-signature-0.5): New variable. Change-Id: Iac8f1f16d5fdaf73b11f925cf486fb42b62b33fd
This commit is contained in:
parent
f09c49be06
commit
cc18e1363f
1 changed files with 27 additions and 0 deletions
|
@ -1411,3 +1411,30 @@ (define-public rust-x509-parser-0.12
|
|||
("rust-ring" ,rust-ring-0.16)
|
||||
("rust-rusticata-macros" ,rust-rusticata-macros-4)
|
||||
("rust-thiserror" ,rust-thiserror-1))))))
|
||||
|
||||
(define-public rust-x509-signature-0.5
|
||||
(package
|
||||
(name "rust-x509-signature")
|
||||
(version "0.5.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "x509-signature" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "063mjzgddfam4xb88wr0li3k0q6nzyq3mvkiykajr69dj0mbrclz"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; `const_err` has been removed: converted into hard error
|
||||
#:cargo-test-flags '("--release" "--"
|
||||
"--skip=tests::parses_openssl_generated_cert")
|
||||
#:cargo-inputs (("rust-ring" ,rust-ring-0.16)
|
||||
("rust-rustls" ,rust-rustls-0.18)
|
||||
("rust-untrusted" ,rust-untrusted-0.7)
|
||||
("rust-webpki" ,rust-webpki-0.21))
|
||||
#:cargo-development-inputs (("rust-chrono" ,rust-chrono-0.4))))
|
||||
(home-page "https://github.com/paritytech/x509-signature")
|
||||
(synopsis "Low-level X.509 parsing and signature verification library")
|
||||
(description "This package provides a low-level X.509 parsing and signature
|
||||
verification library.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
|
Loading…
Reference in a new issue