mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 15:22:18 -05:00
gnu: Add rust-x509-parser-0.15.
* gnu/packages/crates-io.scm (rust-x509-parser-0.15): New variable. (rust-x509-parser-0.12): Inherit from rust-x509-parser-0.15.
This commit is contained in:
parent
052d6a7a9d
commit
0083507f33
1 changed files with 32 additions and 7 deletions
|
@ -77788,8 +77788,39 @@ (define-public rust-x25519-dalek-ng-1
|
|||
rand_core.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public rust-x509-parser-0.15
|
||||
(package
|
||||
(name "rust-x509-parser")
|
||||
(version "0.15.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "x509-parser" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0d7nshccpnybbh8mypirplf4bqxiy36bgh4rrd7jzng19bsw5c5s"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-asn1-rs" ,rust-asn1-rs-0.5)
|
||||
("rust-data-encoding" ,rust-data-encoding-2)
|
||||
("rust-der-parser" ,rust-der-parser-8)
|
||||
("rust-lazy-static" ,rust-lazy-static-1)
|
||||
("rust-nom" ,rust-nom-7)
|
||||
("rust-oid-registry" ,rust-oid-registry-0.6)
|
||||
("rust-ring" ,rust-ring-0.16)
|
||||
("rust-rusticata-macros" ,rust-rusticata-macros-4)
|
||||
("rust-thiserror" ,rust-thiserror-1)
|
||||
("rust-time" ,rust-time-0.3))))
|
||||
(home-page "https://github.com/rusticata/x509-parser")
|
||||
(synopsis "X.509 parser written in pure Rust")
|
||||
(description "This crate provides a parser for the X.509 v3 format (RFC
|
||||
5280 certificates).")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-x509-parser-0.12
|
||||
(package
|
||||
(inherit rust-x509-parser-0.15)
|
||||
(name "rust-x509-parser")
|
||||
(version "0.12.0")
|
||||
(source
|
||||
|
@ -77801,7 +77832,6 @@ (define-public rust-x509-parser-0.12
|
|||
(sha256
|
||||
(base32
|
||||
"1vanwazknxwd1kmlp443bpph9qyas021ayqk6iljxdscm0v0ijgz"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
|
@ -77814,12 +77844,7 @@ (define-public rust-x509-parser-0.12
|
|||
("rust-oid-registry" ,rust-oid-registry-0.2)
|
||||
("rust-ring" ,rust-ring-0.16)
|
||||
("rust-rusticata-macros" ,rust-rusticata-macros-4)
|
||||
("rust-thiserror" ,rust-thiserror-1))))
|
||||
(home-page "https://github.com/rusticata/x509-parser")
|
||||
(synopsis "X.509 parser written in pure Rust")
|
||||
(description "This crate provides a parser for the X.509 v3 format (RFC
|
||||
5280 certificates).")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
("rust-thiserror" ,rust-thiserror-1))))))
|
||||
|
||||
(define-public rust-x86-0.52
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue