wasm-pack: 0.13.1 -> 0.14.0, adopt (#511209)

This commit is contained in:
Michael Daniels
2026-04-26 13:42:11 +00:00
committed by GitHub
+10 -6
View File
@@ -9,16 +9,16 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "wasm-pack";
version = "0.13.1";
version = "0.14.0";
src = fetchFromGitHub {
owner = "rustwasm";
owner = "wasm-bindgen";
repo = "wasm-pack";
tag = "v${finalAttrs.version}";
hash = "sha256-CN1LcLX7ag+in9sosT2NYVKfhDLGv2m3zHOk2T4MFYc=";
hash = "sha256-ik6AJUKuT3GCDTZbHWcplcB7cS0CIcZwFNa6SvGzsIQ=";
};
cargoHash = "sha256-nYWvk2v+4IAk/y7fg+Z/nMH+Ml+J5k5ER8uudCQOMB8=";
cargoHash = "sha256-n9xuwlj8+3fDTHMS2XobqWFc6mNHQcmmvebRDc82oSo=";
nativeBuildInputs = [
cmake
@@ -32,13 +32,17 @@ rustPlatform.buildRustPackage (finalAttrs: {
doCheck = false;
meta = {
changelog = "https://github.com/wasm-bindgen/wasm-pack/blob/v${finalAttrs.version}/CHANGELOG.md";
description = "Utility that builds rust-generated WebAssembly package";
mainProgram = "wasm-pack";
homepage = "https://github.com/rustwasm/wasm-pack";
homepage = "https://github.com/wasm-bindgen/wasm-pack";
license = with lib.licenses; [
asl20 # or
mit
];
maintainers = [ lib.maintainers.dhkl ];
maintainers = with lib.maintainers; [
dhkl
hythera
];
};
})