about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorRafael Fernández López <ereslibre@ereslibre.es>2024-09-10 19:19:25 +0200
committerRafael Fernández López <ereslibre@ereslibre.es>2024-09-26 22:54:40 +0200
commit13911b147d8427f0998a617223ca3b7360b6a5e1 (patch)
treee86f6058f14ac2768aebb32d26e484dede22ba60 /pkgs/tools
parent1c299233a4e150741170ae77ec3fba5dc5d6a5dd (diff)
wasm-tools: 1.216.0 -> 1.217.0
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/wasm-tools/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/tools/misc/wasm-tools/default.nix b/pkgs/tools/misc/wasm-tools/default.nix
index 36e4337a7abb6..ebfa6875a6f61 100644
--- a/pkgs/tools/misc/wasm-tools/default.nix
+++ b/pkgs/tools/misc/wasm-tools/default.nix
@@ -5,21 +5,23 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "wasm-tools";
-  version = "1.216.0";
+  version = "1.217.0";
 
   src = fetchFromGitHub {
     owner = "bytecodealliance";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-HgeiZo/wXLKYwTQv/gcKHNz3p9jfp/8OYSrum3TPI2Q=";
+    hash = "sha256-nxfYoR0ba0As00WbahSVFNItSlleMmITqs8eJabjD/U=";
     fetchSubmodules = true;
   };
 
   # Disable cargo-auditable until https://github.com/rust-secure-code/cargo-auditable/issues/124 is solved.
   auditable = false;
-  cargoHash = "sha256-KS/mg3OZHCyb6IKmbED18xPCblYk0euzdqz7fJl0plI=";
+  cargoHash = "sha256-mBSRJYSE3HmeWhnW4nFF8uFnUJaZ6wdqsq+GnL6SZWc=";
   cargoBuildFlags = [ "--package" "wasm-tools" ];
-  cargoTestFlags = [ "--all" ];
+  cargoTestFlags = [ "--all" ] ++
+    # Due to https://github.com/bytecodealliance/wasm-tools/issues/1820
+    [ "--" "--test-threads=1" ];
 
   meta = with lib; {
     description = "Low level tooling for WebAssembly in Rust";