Skip to content

Commit

Permalink
wasmtime: 23.0.1 -> 24.0.0
Browse files Browse the repository at this point in the history
(cherry picked from commit 59ff74f)
  • Loading branch information
ereslibre committed Aug 23, 2024
1 parent d824a20 commit e79a02d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/development/interpreters/wasmtime/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{ rustPlatform, rustfmt, fetchFromGitHub, Security, lib, stdenv }:
{ lib, rustPlatform, cmake, rustfmt, fetchFromGitHub, Security, stdenv }:

rustPlatform.buildRustPackage rec {
pname = "wasmtime";
version = "23.0.1";
version = "24.0.0";

src = fetchFromGitHub {
owner = "bytecodealliance";
repo = pname;
rev = "v${version}";
hash = "sha256-3PvxMwsFnX2f9sosp93ZHBZDJUUbwLb8lHgaMVqJf6E=";
hash = "sha256-pR6yjJf0szjB73+vqXT4d8P9WD+SIOkEOe4Wl6EgIqQ=";
fetchSubmodules = true;
};

# Disable cargo-auditable until https://github.com/rust-secure-code/cargo-auditable/issues/124 is solved.
auditable = false;
cargoHash = "sha256-ABDjdkHXSu80yUnXBNsUmpbtl9F3CYxy2GvYGN2fEuY=";
cargoHash = "sha256-bZtBEmzmu63wNlGhYvN0gYKkLPxzBHZ1iO16BMPD3tE=";
cargoBuildFlags = [ "--package" "wasmtime-cli" "--package" "wasmtime-c-api" ];

outputs = [ "out" "dev" ];
Expand All @@ -25,7 +25,7 @@ rustPlatform.buildRustPackage rec {
# warning: [email protected]:
# Failed to run `rustfmt` on ISLE-generated code: Os
# { code: 2, kind: NotFound, message: "No such file or directory" }
nativeBuildInputs = [ rustfmt ];
nativeBuildInputs = [ cmake rustfmt ];

doCheck = with stdenv.buildPlatform;
# SIMD tests are only executed on platforms that support all
Expand Down

0 comments on commit e79a02d

Please sign in to comment.