wasm-bindgen-cli: 0.2.74 -> 0.2.75

This commit is contained in:
David Yamnitsky 2021-08-10 10:51:16 -04:00
parent d262033730
commit bb0867389f
2 changed files with 338 additions and 514 deletions

File diff suppressed because it is too large Load Diff

View File

@ -11,7 +11,7 @@
rustPlatform.buildRustPackage rec {
pname = "wasm-bindgen-cli";
version = "0.2.74";
version = "0.2.75";
src =
let
@ -19,7 +19,7 @@ rustPlatform.buildRustPackage rec {
owner = "rustwasm";
repo = "wasm-bindgen";
rev = version;
hash = "sha256-GsraYfWzUZjFpPpufTyXF0i2llBzjh04iTKio6m4NRA=";
hash = "sha256-eRAe6/v0Xrtd1d2k6p0WETZ2vkQkiDRZOds7y0DidY0=";
};
in
runCommand "source" { } ''
@ -31,14 +31,14 @@ rustPlatform.buildRustPackage rec {
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security curl ];
nativeBuildInputs = [ pkg-config ];
cargoHash = "sha256-djeI7kSGRHMpXnsbVlM2CDek02u5tFAsyAdHwbKC0y8=";
cargoHash = "sha256-xZrGBRnsBQKvqGkZyU7FQCkx0dHt/hXlrVLSvGKx27k=";
cargoBuildFlags = [ "-p" pname ];
meta = with lib; {
homepage = "https://rustwasm.github.io/docs/wasm-bindgen/";
license = licenses.asl20;
description = "Facilitating high-level interactions between wasm modules and JavaScript";
maintainers = with maintainers; [ ma27 rizary ];
maintainers = with maintainers; [ ma27 nitsky rizary ];
platforms = platforms.unix;
};
}