3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add rust-ring-0.13.

* gnu/packages/crates-io.scm (rust-ring-0.13): New variable.
This commit is contained in:
Hartmut Goebel 2020-04-25 12:12:05 +02:00
parent 7c7289e678
commit 98a653c79f
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -18811,6 +18811,26 @@ uses finite automata and guarantees linear time matching on all inputs.")
(description "This package provided safe, fast, small crypto using Rust.")
(license (list license:isc license:openssl))))
(define-public rust-ring-0.13
(package/inherit rust-ring-0.16
(name "rust-ring")
(version "0.13.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "ring" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "12j580by6a438i5mw3136cj3lxylywymdr5p8rqlkwrm5s5bck9c"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-lazy-static" ,rust-lazy-static-1)
("rust-libc" ,rust-libc-0.2)
("rust-untrusted" ,rust-untrusted-0.6)
;; build dependencies
("rust-cc" ,rust-cc-1.0))))))
(define-public rust-ron-0.4
(package
(name "rust-ron")