Unverified Commit cc82ff2a authored by Michael Daniels's avatar Michael Daniels Committed by GitHub
Browse files

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

parents cdb8c179 61eb775a
Loading
Loading
Loading
Loading
+10 −6
Original line number Diff line number Diff line
@@ -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
    ];
  };
})