Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11067,6 +11067,13 @@
githubId = 54999;
name = "Ariel Nunez";
};
insipx = {
email = "github@andrewplaza.dev";
github = "insipx";
githubId = 6452260;
name = "Andrew Plaza";
keys = [ { fingerprint = "843D 72A9 EB79 A869 2C58 5B3A E773 8A7A 0F5C DB89"; } ];
};
Intuinewin = {
email = "antoinelabarussias@gmail.com";
github = "Intuinewin";
Expand Down
7 changes: 5 additions & 2 deletions pkgs/build-support/wasm-bindgen-cli/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,16 @@ rustPlatform.buildRustPackage {
passthru.updateScript = nix-update-script { };

meta = {
homepage = "https://rustwasm.github.io/docs/wasm-bindgen/";
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 ];
maintainers = with lib.maintainers; [
rizary
insipx
];
mainProgram = "wasm-bindgen";
};
}
19 changes: 19 additions & 0 deletions pkgs/by-name/wa/wasm-bindgen-cli_0_2_104/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
buildWasmBindgenCli,
fetchCrate,
rustPlatform,
}:

buildWasmBindgenCli rec {
src = fetchCrate {
pname = "wasm-bindgen-cli";
version = "0.2.104";
hash = "sha256-9kW+a7IreBcZ3dlUdsXjTKnclVW1C1TocYfY8gUgewE=";
};

cargoDeps = rustPlatform.fetchCargoVendor {
inherit src;
inherit (src) pname version;
hash = "sha256-V0AV5jkve37a5B/UvJ9B3kwOW72vWblST8Zxs8oDctE=";
};
}
2 changes: 1 addition & 1 deletion pkgs/top-level/aliases.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2569,7 +2569,7 @@ mapAliases {
wal_e = throw "wal_e was removed as it is unmaintained upstream and depends on the removed boto package; upstream recommends using wal-g or pgbackrest"; # Added 2024-09-22
wapp = tclPackages.wapp; # Added 2024-10-02
wavebox = throw "'wavebox' has been removed due to lack of maintenance in nixpkgs"; # Added 2025-06-24
wasm-bindgen-cli = wasm-bindgen-cli_0_2_100;
wasm-bindgen-cli = wasm-bindgen-cli_0_2_104;
watershot = throw "'watershot' has been removed as it is unmaintained upstream and no longer works"; # Added 2025-06-01
wayfireApplications-unwrapped = throw ''
'wayfireApplications-unwrapped.wayfire' has been renamed to/replaced by 'wayfire'
Expand Down
Loading