mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
56 lines
964 B
Nix
56 lines
964 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchCrate,
|
|
nix-update-script,
|
|
nodejs_latest,
|
|
pkg-config,
|
|
openssl,
|
|
stdenv,
|
|
curl,
|
|
}:
|
|
|
|
{
|
|
version ? src.version,
|
|
src,
|
|
cargoDeps,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "wasm-bindgen-cli";
|
|
|
|
inherit version src cargoDeps;
|
|
|
|
__structuredAttrs = true;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
curl
|
|
];
|
|
|
|
nativeCheckInputs = [ nodejs_latest ];
|
|
|
|
# tests require it to be ran in the wasm-bindgen monorepo
|
|
doCheck = false;
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
homepage = "https://wasm-bindgen.github.io/wasm-bindgen/";
|
|
license = with lib.licenses; [
|
|
asl20 # or
|
|
mit
|
|
];
|
|
description = "Facilitating high-level interactions between wasm modules and JavaScript";
|
|
maintainers = with lib.maintainers; [
|
|
rizary
|
|
insipx
|
|
];
|
|
mainProgram = "wasm-bindgen";
|
|
};
|
|
}
|