mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 20:57:12 -05:00
gnu: Add rust-der-0.4.
* gnu/packages/crates-io.scm (rust-der-0.4): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
55bb7682d1
commit
c9888cc7a4
1 changed files with 29 additions and 0 deletions
|
@ -14931,6 +14931,35 @@ (define-public rust-demo-hack-impl-0.0
|
||||||
(description "Demo of proc-macro-hack.")
|
(description "Demo of proc-macro-hack.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-der-0.4
|
||||||
|
(package
|
||||||
|
(name "rust-der")
|
||||||
|
(version "0.4.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "der" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1x4k0jln8va1657cghl40l6p7hyvr1ixz71v9cd6imwmgp51rdvr"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build?
|
||||||
|
#t ; FIXME
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-const-oid" ,rust-const-oid-0.6)
|
||||||
|
("rust-crypto-bigint" ,rust-crypto-bigint-0.2)
|
||||||
|
("rust-der-derive" ,rust-der-derive-0.4))))
|
||||||
|
(home-page "https://github.com/RustCrypto/formats/tree/master/der")
|
||||||
|
(synopsis
|
||||||
|
"Implementation of the Distinguished Encoding Rules (DER)")
|
||||||
|
(description
|
||||||
|
"This package provides a pure Rust embedded-friendly implementation of
|
||||||
|
the Distinguished Encoding Rules (DER) for Abstract Syntax Notation One
|
||||||
|
(ASN.1) as described in ITU X.690 with full support for heapless no_std
|
||||||
|
targets")
|
||||||
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-der-derive-0.4
|
(define-public rust-der-derive-0.4
|
||||||
(package
|
(package
|
||||||
(name "rust-der-derive")
|
(name "rust-der-derive")
|
||||||
|
|
Loading…
Reference in a new issue