mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add rust-oid-registry-0.7.
* gnu/packages/crates-tls.scm (rust-oid-registry-0.7): New variable. (rust-oid-registry-0.6): Inherit from rust-oid-registry-0.7. Change-Id: I647cb68fc3ccd2ff5ccbed0893c39c97b8826916
This commit is contained in:
parent
7d899bd0f5
commit
a8e972e5da
1 changed files with 23 additions and 8 deletions
|
@ -902,8 +902,30 @@ (define-public rust-oid-0.2
|
|||
formating Object Identifiers (OIDs).")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-oid-registry-0.7
|
||||
(package
|
||||
(name "rust-oid-registry")
|
||||
(version "0.7.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "oid-registry" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1navxdy0gx7f92ymwr6n02x35fypp2izdfcf49wszkc9ji6h7n58"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-asn1-rs" ,rust-asn1-rs-0.6))))
|
||||
(home-page "https://github.com/rusticata/oid-registry")
|
||||
(synopsis "Object Identifier (OID) database")
|
||||
(description "This crate is a helper crate, containing a database of
|
||||
OID objects. These objects are intended for use when manipulating ASN.1
|
||||
grammars and BER/DER encodings, for example.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-oid-registry-0.6
|
||||
(package
|
||||
(inherit rust-oid-registry-0.7)
|
||||
(name "rust-oid-registry")
|
||||
(version "0.6.1")
|
||||
(source (origin
|
||||
|
@ -913,15 +935,8 @@ (define-public rust-oid-registry-0.6
|
|||
(sha256
|
||||
(base32
|
||||
"1zwvjp3ad6gzn8g8w2hcn9a2xdap0lkzckhlnwp6rabbzdpz7vcv"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-asn1-rs" ,rust-asn1-rs-0.5))))
|
||||
(home-page "https://github.com/rusticata/oid-registry")
|
||||
(synopsis "Object Identifier (OID) database")
|
||||
(description "This crate is a helper crate, containing a database of
|
||||
OID objects. These objects are intended for use when manipulating ASN.1
|
||||
grammars and BER/DER encodings, for example.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
`(#:cargo-inputs (("rust-asn1-rs" ,rust-asn1-rs-0.5))))))
|
||||
|
||||
(define-public rust-oid-registry-0.4
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue