me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-secp256k1-0.20.

* gnu/packages/crates-io.scm (rust-secp256k1-0.20): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Attila Lendvai 2022-01-19 15:38:34 +01:00 committed by Nicolas Goaziou
parent b22db754ff
commit 6b1b859d0f
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 25 additions and 0 deletions

View File

@ -51918,6 +51918,31 @@ statistical guarantees.")
SECG elliptic curve group secp256k1 and related utilities.") SECG elliptic curve group secp256k1 and related utilities.")
(license license:cc0))) (license license:cc0)))
(define-public rust-secp256k1-0.20
(package
(inherit rust-secp256k1-0.21)
(name "rust-secp256k1")
(version "0.20.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "secp256k1" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "02kxhfgy85zg7w2yyvnzrr7myk1mckvg99z6pbazxl1nwvm3rl4p"))))
(arguments
`(#:cargo-inputs
(("rust-bitcoin-hashes" ,rust-bitcoin-hashes-0.9)
("rust-rand" ,rust-rand-0.6)
("rust-secp256k1-sys" ,rust-secp256k1-sys-0.4)
("rust-serde" ,rust-serde-1))
#:cargo-development-inputs
(("rust-bitcoin-hashes" ,rust-bitcoin-hashes-0.10)
("rust-rand" ,rust-rand-0.6)
("rust-rand-core" ,rust-rand-core-0.4)
("rust-serde-test" ,rust-serde-test-1)
("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3))))))
(define-public rust-secp256k1-sys-0.4 (define-public rust-secp256k1-sys-0.4
(package (package
(name "rust-secp256k1-sys") (name "rust-secp256k1-sys")