gnu: Add rust-wasm-bindgen-shared.

* gnu/packages/crates-io.scm (rust-wasm-bindgen-shared): New variable.
This commit is contained in:
Efraim Flashner 2019-08-04 14:11:08 +03:00
parent ede033176a
commit 2a13c9fa5c
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -862,3 +862,23 @@ (define-public rust-unindent
whitespace from a string.")
(license (list license:asl2.0
license:expat))))
(define-public rust-wasm-bindgen-shared
(package
(name "rust-wasm-bindgen-shared")
(version "0.2.48")
(source
(origin
(method url-fetch)
(uri (crate-uri "wasm-bindgen-shared" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"08rnfhjyk0f6liv8n4rdsvhx7r02glkhcbj2lp9lcbkbfpad9hnr"))))
(build-system cargo-build-system)
(home-page "https://rustwasm.github.io/wasm-bindgen/")
(synopsis "Shared support between wasm-bindgen and wasm-bindgen cli")
(description "This package provides shared support between
@code{wasm-bindgen} and @code{wasm-bindgen} cli, an internal dependency.")
(license (list license:asl2.0
license:expat))))