me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-wasm-bindgen-0.2.

* gnu/packages/crates-io.scm (rust-wasm-bindgen-0.2): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-14 17:57:29 -08:00 committed by Efraim Flashner
parent b9945ec24c
commit 0dbbb5a622
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 27 additions and 0 deletions

View File

@ -7103,6 +7103,33 @@ in Rust.")
(properties '((hidden? . #t)))
(license license:asl2.0)))
(define-public rust-wasm-bindgen-0.2
(package
(name "rust-wasm-bindgen")
(version "0.2.48")
(source
(origin
(method url-fetch)
(uri (crate-uri "wasm-bindgen" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0m8vq3jkhz04fn3wjvb7ii7xql60w32nlvr10jcskcbbh2hpzsad"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-serde" ,rust-serde-1.0)
("rust-serde-json" ,rust-serde-json-1.0)
("rust-wasm-bindgen-macro"
,rust-wasm-bindgen-macro-0.2))))
(home-page "https://rustwasm.github.io/")
(synopsis "Easy support for interacting between JS and Rust")
(description
"Easy support for interacting between JS and Rust.")
(license (list license:asl2.0 license:expat))))
(define-public rust-wasm-bindgen-backend-0.2
(package
(name "rust-wasm-bindgen-backend")