me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-ethbloom-0.5.

* gnu/packages/crates-io.scm (rust-ethbloom-0.5): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Attila Lendvai 2022-01-20 22:36:44 +01:00 committed by Nicolas Goaziou
parent 4ffcb64f9a
commit 9a7da0b0d8
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 29 additions and 0 deletions

View File

@ -20329,6 +20329,35 @@ decoding.")
(("rust-serde" ,rust-serde-1)
("rust-serde-json" ,rust-serde-json-1))))))
(define-public rust-ethbloom-0.5
(package
(name "rust-ethbloom")
(version "0.5.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "ethbloom" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0q2kix0p067rrfffhbfra453dw51s4cfgs0lhirslsv4callsad6"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; The tests fail.
#:cargo-inputs
(("rust-crunchy" ,rust-crunchy-0.1)
("rust-ethereum-types-serialize" ,rust-ethereum-types-serialize-0.2)
("rust-fixed-hash" ,rust-fixed-hash-0.2)
("rust-serde" ,rust-serde-1)
("rust-tiny-keccak" ,rust-tiny-keccak-1))
#:cargo-development-inputs
(("rust-hex-literal" ,rust-hex-literal-0.1)
("rust-rand" ,rust-rand-0.4)
("rust-rustc-hex" ,rust-rustc-hex-1))))
(home-page "https://github.com/paritytech/parity-common")
(synopsis "Ethereum bloom filter")
(description "This package provides an Ethereum bloom filter.")
(license (list license:expat license:asl2.0))))
(define-public rust-ethereum-types-0.12
(package
(name "rust-ethereum-types")