gnu: Add rust-parity-wasm.

* gnu/packages/crates-io.scm (rust-parity-wasm): New variable.
This commit is contained in:
Efraim Flashner 2019-09-05 21:07:24 +03:00
parent 540d830edc
commit 41ba4cf150
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1968,6 +1968,31 @@ (define-public rust-owning-ref
normally prevent moving a type that has been borrowed from.")
(license license:expat)))
(define-public rust-parity-wasm
(package
(name "rust-parity-wasm")
(version "0.40.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "parity-wasm" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1p84f0k36q05j18jy66n122lyali794cj78hbxgy9wj6si84plqd"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-development-inputs
(("rust-time" ,rust-time))
#:tests? #f)) ; Test files are not included in release.
(home-page "https://github.com/paritytech/parity-wasm")
(synopsis "Low-level WebAssembly format library")
(description
"This package provides a WebAssembly binary format serialization,
deserialization, and interpreter in Rust.")
(license (list license:asl2.0
license:expat))))
(define-public rust-peeking-take-while
(package
(name "rust-peeking-take-while")