diff options
author | Herman Rimm <herman@rimm.ee> | 2024-02-18 22:09:08 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:43:47 +0300 |
commit | fc31f656fc3e06be83da3ec191c280383338e397 (patch) | |
tree | 4b5bc0ab0a79dcbe38b00aff535f862e2004af20 | |
parent | 57dc584f1589c6ab423027258f57dde5ce548f69 (diff) | |
download | guix-fc31f656fc3e06be83da3ec191c280383338e397.tar.gz guix-fc31f656fc3e06be83da3ec191c280383338e397.zip |
gnu: Add rust-x509-cert-0.2.
* gnu/packages/crates-tls.scm (rust-x509-cert-0.2): Add variable.
Change-Id: Id4d6a36b024b5f605da9f1e4304ed9a05e2c340c
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-tls.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/crates-tls.scm b/gnu/packages/crates-tls.scm index ee061cedcf..419324bca9 100644 --- a/gnu/packages/crates-tls.scm +++ b/gnu/packages/crates-tls.scm @@ -1578,6 +1578,42 @@ PEM-encodings commonly used to store keys and certificates at rest.") (description "This package provides a Rust parser for the TLS protocol.") (license (list license:expat license:asl2.0)))) +(define-public rust-x509-cert-0.2 + (package + (name "rust-x509-cert") + (version "0.2.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "x509-cert" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "155f42vm6m7phn8w7s2wmk9vli3ws45dqpk5z3jilw0a04syj08k")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-arbitrary" ,rust-arbitrary-1) + ("rust-const-oid" ,rust-const-oid-0.9) + ("rust-der" ,rust-der-0.7) + ("rust-sha1" ,rust-sha1-0.10) + ("rust-signature" ,rust-signature-2) + ("rust-spki" ,rust-spki-0.7) + ("rust-tls-codec" ,rust-tls-codec-0.4)) + #:cargo-development-inputs + (("rust-ecdsa" ,rust-ecdsa-0.16) + ("rust-hex-literal" ,rust-hex-literal-0.4) + ("rust-p256" ,rust-p256-0.13) + ("rust-rand" ,rust-rand-0.8) + ("rust-rsa" ,rust-rsa-0.9) + ("rust-rstest" ,rust-rstest-0.18) + ("rust-sha2" ,rust-sha2-0.10) + ("rust-tempfile" ,rust-tempfile-3)))) + (home-page "https://github.com/RustCrypto/formats/tree/master/x509-cert") + (synopsis "X.509 Public Key Infrastructure Certificate format in Rust") + (description + "This package provides a pure Rust implementation of the X.509 +Public Key Infrastructure Certificate format as described in RFC 5280.") + (license (list license:asl2.0 license:expat)))) + (define-public rust-x509-parser-0.15 (package (name "rust-x509-parser") |