Skip to content

Commit

Permalink
wasmtime: 4.0.0 -> 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ereslibre authored and gador committed Feb 13, 2023
1 parent f4c35b4 commit 782168c
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions pkgs/development/interpreters/wasmtime/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

rustPlatform.buildRustPackage rec {
pname = "wasmtime";
version = "4.0.0";
version = "5.0.0";

src = fetchFromGitHub {
owner = "bytecodealliance";
repo = pname;
rev = "v${version}";
hash = "sha256-Vw3+KlAuCQiyBfPOZrUotgrdkG+FRjXg8AxAanfbwJQ=";
hash = "sha256-tHGzXjOOOWgYBMA0skLRNFkVgXc3hcs3F1XNsHxDRhk=";
fetchSubmodules = true;
};

cargoHash = "sha256-gV3Yf7YL3D3hrymYW1b80uOlp7RYRWFC7GtxAot5Ut0=";
cargoHash = "sha256-92BZdbNz22cZMJkHJwE3lUik6hAhRLCBwYzm2RAvRGo=";

cargoBuildFlags = [
"--package wasmtime-cli"
Expand All @@ -28,14 +28,8 @@ rustPlatform.buildRustPackage rec {
# false positives of this package being broken due to failed runs on
# Hydra (e.g. https://hydra.nixos.org/build/187667794/)
doCheck = (stdenv.system != "x86_64-darwin");
checkFlags = [
"--skip=cli_tests::run_cwasm"
"--skip=commands::compile::test::test_unsupported_flags_compile"
"--skip=commands::compile::test::test_aarch64_flags_compile"
"--skip=commands::compile::test::test_successful_compile"
"--skip=commands::compile::test::test_x64_flags_compile"
"--skip=commands::compile::test::test_x64_presets_compile"
"--skip=traps::parse_dwarf_info"
cargoTestFlags = [
"--package wasmtime-runtime"
];

postInstall = ''
Expand Down

0 comments on commit 782168c

Please sign in to comment.