summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Müller <neikos@neikos.email>2023-04-12 15:28:47 +0200
committerMarcel Müller <neikos@neikos.email>2023-04-12 15:28:47 +0200
commit53682f6ad53a9888e2d3d3caf51f45133abd5f5f (patch)
tree7fb71c1e45af8039af59df1dcce22d2441059002
parent16a529cf734cc00037bf76a8ecae21e3e6c6f2b1 (diff)
Fix wasm-buildgen to the correct version
Signed-off-by: Marcel Müller <neikos@neikos.email>
-rw-r--r--flake.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index 42bf12c..2a08016 100644
--- a/flake.nix
+++ b/flake.nix
@@ -23,14 +23,14 @@
let
wasm-bindgen-cli = pkgs.rustPlatform.buildRustPackage rec {
pname = "wasm-bindgen-cli";
- version = "0.2.83";
+ version = "0.2.84";
src = pkgs.fetchCrate {
inherit pname version;
- sha256 = "sha256-+PWxeRL5MkIfJtfN3/DjaDlqRgBgWZMa6dBt1Q+lpd0=";
+ sha256 = "sha256-0rK+Yx4/Jy44Fw5VwJ3tG243ZsyOIBBehYU54XP/JGk=";
};
- cargoSha256 = "sha256-GwLeA6xLt7I+NzRaqjwVpt1pzRex1/snq30DPv4FR+g=";
+ cargoSha256 = "sha256-vcpxcRlW1OKoD64owFF6mkxSqmNrvY+y3Ckn5UwEQ50=";
nativeBuildInputs = [ pkgs.pkg-config ];