wasm-bindgen-cli_0_2_99: init at 0.2.99

This is needed for teleport_18

(cherry picked from commit c6d1d4dd2c)
This commit is contained in:
JuliusFreudenberger
2025-05-26 14:50:46 +03:00
parent 1fcc12742d
commit 25ef88b40f

View File

@@ -0,0 +1,19 @@
{
buildWasmBindgenCli,
fetchCrate,
rustPlatform,
}:
buildWasmBindgenCli rec {
src = fetchCrate {
pname = "wasm-bindgen-cli";
version = "0.2.99";
hash = "sha256-1AN2E9t/lZhbXdVznhTcniy+7ZzlaEp/gwLEAucs6EA=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit src;
inherit (src) pname version;
hash = "sha256-HGcqXb2vt6nAvPXBZOJn7nogjIoAgXno2OJBE1trHpc=";
};
}