1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-19 23:55:54 +02:00

gnu: Add rust-wat-1.

* gnu/packages/crates-io.scm (rust-wat-1): New variable.

Change-Id: Idf9551c467946e79557f1fb244a9e681dece07ed
Signed-off-by: Steve George <steve@futurile.net>
This commit is contained in:
Steve George
2025-03-23 13:11:20 +00:00
committed by Hilton Chain
parent a077bfc8d7
commit edbe7b4a31
+22
View File
@@ -96574,6 +96574,28 @@ format to the text format.")
@code{WebAssembly} Text formats WAT and WAST.")
(license (list license:asl2.0 license:asl2.0 license:expat))))
(define-public rust-wat-1
(package
(name "rust-wat")
(version "1.226.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "wat" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "10b5jvlj33m8njjcfd1h7jwnjzvsz85h415pnasvh0f4y87ak2az"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-wast" ,rust-wast-226))))
(home-page
"https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wat")
(synopsis "Rust parser for the WebAssembly Text format, WAT")
(description
"This package provides a parser for the
@acronym{WAT, WebAssembly Text format}.")
(license (list license:asl2.0 license:asl2.0 license:expat))))
(define-public rust-watchexec-2
(package
(name "rust-watchexec")