about summary refs log tree commit diff
path: root/pkgs/development/interpreters/wasmtime
diff options
context:
space:
mode:
authorRafael Fernández López <ereslibre@ereslibre.es>2024-04-23 00:16:00 +0200
committerRafael Fernández López <ereslibre@ereslibre.es>2024-04-23 00:16:00 +0200
commita71a9aea0cf8221dc13e2fc49a1d57aec89c603b (patch)
treee49945ef5b66ea7814b630dafb0385581b563457 /pkgs/development/interpreters/wasmtime
parent7a26ee781d45ed145f8419f51ca34bc38599830e (diff)
downloadnixlib-a71a9aea0cf8221dc13e2fc49a1d57aec89c603b.tar
nixlib-a71a9aea0cf8221dc13e2fc49a1d57aec89c603b.tar.gz
nixlib-a71a9aea0cf8221dc13e2fc49a1d57aec89c603b.tar.bz2
nixlib-a71a9aea0cf8221dc13e2fc49a1d57aec89c603b.tar.lz
nixlib-a71a9aea0cf8221dc13e2fc49a1d57aec89c603b.tar.xz
nixlib-a71a9aea0cf8221dc13e2fc49a1d57aec89c603b.tar.zst
nixlib-a71a9aea0cf8221dc13e2fc49a1d57aec89c603b.zip
wasmtime: 19.0.2 -> 20.0.0
Diffstat (limited to 'pkgs/development/interpreters/wasmtime')
-rw-r--r--pkgs/development/interpreters/wasmtime/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/interpreters/wasmtime/default.nix b/pkgs/development/interpreters/wasmtime/default.nix
index 0f56582c05c3..545c176ab472 100644
--- a/pkgs/development/interpreters/wasmtime/default.nix
+++ b/pkgs/development/interpreters/wasmtime/default.nix
@@ -2,19 +2,19 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "wasmtime";
-  version = "19.0.2";
+  version = "20.0.0";
 
   src = fetchFromGitHub {
     owner = "bytecodealliance";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-t+2bkJ1SFN7Bi1Mj74CKGhnL2vWpruQKf8lYJWLOqB8=";
+    hash = "sha256-Q2CsIwYQsLnAlGyMRxNTxjZsezxhjSptBF540NtgkCc=";
     fetchSubmodules = true;
   };
 
   # Disable cargo-auditable until https://github.com/rust-secure-code/cargo-auditable/issues/124 is solved.
   auditable = false;
-  cargoHash = "sha256-Jr02AQWz4ILYZWlGtcVYWTcBojHWZk871bWuEyG5QxE=";
+  cargoHash = "sha256-d956DuVtLbZ/u3sAA4cQlw55CuYC7XyzeQarwyQ/hpY=";
   cargoBuildFlags = [ "--package" "wasmtime-cli" "--package" "wasmtime-c-api" ];
 
   outputs = [ "out" "dev" ];
@@ -36,7 +36,6 @@ rustPlatform.buildRustPackage rec {
     install -d -m0755 $dev/include/wasmtime
     install -m0644 $src/crates/c-api/include/*.h $dev/include
     install -m0644 $src/crates/c-api/include/wasmtime/*.h $dev/include/wasmtime
-    install -m0644 $src/crates/c-api/wasm-c-api/include/* $dev/include
   '' + lib.optionalString stdenv.isDarwin ''
     install_name_tool -id \
       $dev/lib/libwasmtime.dylib \