2021-10-17 09:34:42 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, fetchCrate
|
|
|
|
, nodejs
|
2021-06-28 23:13:55 +00:00
|
|
|
, pkg-config
|
2021-10-17 09:34:42 +00:00
|
|
|
, openssl
|
2021-06-28 23:13:55 +00:00
|
|
|
, stdenv
|
|
|
|
, curl
|
|
|
|
, Security
|
2023-08-04 22:07:22 +00:00
|
|
|
, version ? "0.2.87"
|
|
|
|
, hash ? "sha256-0u9bl+FkXEK2b54n7/l9JOCtKo+pb42GF9E1EnAUQa0="
|
|
|
|
, cargoHash ? "sha256-AsZBtE2qHJqQtuCt/wCAgOoxYMfvDh8IzBPAOkYSYko="
|
2020-07-18 16:06:22 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "wasm-bindgen-cli";
|
2023-08-04 22:07:22 +00:00
|
|
|
inherit version hash cargoHash;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-10-17 09:34:42 +00:00
|
|
|
src = fetchCrate {
|
2023-08-04 22:07:22 +00:00
|
|
|
inherit pname version hash;
|
2021-10-17 09:34:42 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-10-17 09:34:42 +00:00
|
|
|
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ curl Security ];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [ nodejs ];
|
2021-10-17 09:34:42 +00:00
|
|
|
|
2023-08-04 22:07:22 +00:00
|
|
|
# tests require it to be ran in the wasm-bindgen monorepo
|
|
|
|
doCheck = false;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://rustwasm.github.io/docs/wasm-bindgen/";
|
2021-10-17 09:34:42 +00:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Facilitating high-level interactions between wasm modules and JavaScript";
|
2022-06-26 10:26:21 +00:00
|
|
|
maintainers = with maintainers; [ nitsky rizary ];
|
2021-10-17 09:34:42 +00:00
|
|
|
mainProgram = "wasm-bindgen";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|