wasmtime: 4.0.0 -> 5.0.0
This commit is contained in:
parent
4cc665fe8e
commit
f329e5f506
1 changed files with 5 additions and 11 deletions
|
@ -2,17 +2,17 @@
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "wasmtime";
|
pname = "wasmtime";
|
||||||
version = "4.0.0";
|
version = "5.0.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "bytecodealliance";
|
owner = "bytecodealliance";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-Vw3+KlAuCQiyBfPOZrUotgrdkG+FRjXg8AxAanfbwJQ=";
|
hash = "sha256-tHGzXjOOOWgYBMA0skLRNFkVgXc3hcs3F1XNsHxDRhk=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-gV3Yf7YL3D3hrymYW1b80uOlp7RYRWFC7GtxAot5Ut0=";
|
cargoHash = "sha256-92BZdbNz22cZMJkHJwE3lUik6hAhRLCBwYzm2RAvRGo=";
|
||||||
|
|
||||||
cargoBuildFlags = [
|
cargoBuildFlags = [
|
||||||
"--package wasmtime-cli"
|
"--package wasmtime-cli"
|
||||||
|
@ -28,14 +28,8 @@ rustPlatform.buildRustPackage rec {
|
||||||
# false positives of this package being broken due to failed runs on
|
# false positives of this package being broken due to failed runs on
|
||||||
# Hydra (e.g. https://hydra.nixos.org/build/187667794/)
|
# Hydra (e.g. https://hydra.nixos.org/build/187667794/)
|
||||||
doCheck = (stdenv.system != "x86_64-darwin");
|
doCheck = (stdenv.system != "x86_64-darwin");
|
||||||
checkFlags = [
|
cargoTestFlags = [
|
||||||
"--skip=cli_tests::run_cwasm"
|
"--package wasmtime-runtime"
|
||||||
"--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"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
|
Loading…
Reference in a new issue