about summary refs log tree commit diff
path: root/pkgs/development/interpreters/wasmtime
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2023-04-28 10:15:11 +0200
committerThomas Gerbet <thomas@gerbet.me>2023-04-28 10:15:11 +0200
commit51ba50985ac3aa264b27698d8a642a944d29abea (patch)
tree6dae393c412ef1af290714f58aadf8aac01bedc2 /pkgs/development/interpreters/wasmtime
parent08fd383ada3fa749af635a0370dd9e71a6b9be62 (diff)
wasmtime: 8.0.0 -> 8.0.1
Fixes CVE-2023-30624.

https://github.com/bytecodealliance/wasmtime/blob/v8.0.1/RELEASES.md
Diffstat (limited to 'pkgs/development/interpreters/wasmtime')
-rw-r--r--pkgs/development/interpreters/wasmtime/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/wasmtime/default.nix b/pkgs/development/interpreters/wasmtime/default.nix
index a3b736a6d9e7f..4103741dacefa 100644
--- a/pkgs/development/interpreters/wasmtime/default.nix
+++ b/pkgs/development/interpreters/wasmtime/default.nix
@@ -2,17 +2,17 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "wasmtime";
-  version = "8.0.0";
+  version = "8.0.1";
 
   src = fetchFromGitHub {
     owner = "bytecodealliance";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-NSD0xWqxRVFiearYRZFIllizsRHPylWYNzcNoC6+Cpg=";
+    hash = "sha256-xSHwR2MGL49VDKjzAh+xYHbLz3FFg3KYVBjALVgKSQI=";
     fetchSubmodules = true;
   };
 
-  cargoHash = "sha256-v0DLbYM9EoIcj0JEH+LWrMx14gLRfCLW8wYDFKdFNCs=";
+  cargoHash = "sha256-A2JhjRFKPltHubiJYHBXj2H4cdU43Y2x6UjEpRGPX7U=";
 
   cargoBuildFlags = [
     "--package wasmtime-cli"