about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2024-06-29 09:04:53 -0400
committerGitHub <noreply@github.com>2024-06-29 09:04:53 -0400
commit56bbca354d76b66e1bc2a2970679577c69e7c00c (patch)
tree65ea415ddba5fb5a981faf78faafff4220ebe089
parent39d41fb92d2d20616071af98f36c87cefb569a73 (diff)
parent74cb04af2eb6f57bb9efac1ac439271157b80ac5 (diff)
Merge pull request #323155 from NixOS/backport-323081-to-release-24.05
[Backport release-24.05] wasm-tools: 1.211.1 -> 1.212.0
-rw-r--r--pkgs/tools/misc/wasm-tools/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/wasm-tools/default.nix b/pkgs/tools/misc/wasm-tools/default.nix
index e89628a117ff6..567127a1bee85 100644
--- a/pkgs/tools/misc/wasm-tools/default.nix
+++ b/pkgs/tools/misc/wasm-tools/default.nix
@@ -5,19 +5,19 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "wasm-tools";
-  version = "1.211.1";
+  version = "1.212.0";
 
   src = fetchFromGitHub {
     owner = "bytecodealliance";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-xd5/QB6/V8cyoygShmcIzUgXZNs+kBuPtKy56BSoxKo=";
+    hash = "sha256-7raUPwqCOPywVBCRZbzqtk6qy7hWvBFQ7l0V28UBUI4=";
     fetchSubmodules = true;
   };
 
   # Disable cargo-auditable until https://github.com/rust-secure-code/cargo-auditable/issues/124 is solved.
   auditable = false;
-  cargoHash = "sha256-H3eEwVZB6xzZwW5Bvgs7yPV58QUNvLSWSDigLzs2uG0=";
+  cargoHash = "sha256-tIber/XmA76NAvLI+qMN0ipkulh945fGoAtf2xUJufA=";
   cargoBuildFlags = [ "--package" "wasm-tools" ];
   cargoTestFlags = [ "--all" ];