mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add rust-wasmparser-0.57.
* gnu/packages/crates-io.scm (rust-wasmparser-0.57): New variable.
This commit is contained in:
parent
00c1793ce8
commit
6cadf34d1f
1 changed files with 20 additions and 0 deletions
|
@ -47250,6 +47250,26 @@ (define-public rust-wasm-bindgen-webidl-0.2
|
||||||
"Support for parsing WebIDL specific to wasm-bindgen.")
|
"Support for parsing WebIDL specific to wasm-bindgen.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-wasmparser-0.57
|
||||||
|
(package
|
||||||
|
(name "rust-wasmparser")
|
||||||
|
(version "0.57.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "wasmparser" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "19kslk9pv1bcyp85w63dn1adbp13kz7kjha80abnwz27bmbxvz9j"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments `(#:skip-build? #t))
|
||||||
|
(home-page "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser")
|
||||||
|
(synopsis "Simple event-driven library for parsing WebAssembly binary files")
|
||||||
|
(description
|
||||||
|
"This package provides a simple event-driven library for parsing
|
||||||
|
WebAssembly binary files.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public rust-web-sys-0.3
|
(define-public rust-web-sys-0.3
|
||||||
(package
|
(package
|
||||||
(name "rust-web-sys")
|
(name "rust-web-sys")
|
||||||
|
|
Loading…
Reference in a new issue