Skip to content

Commit f89b85d

Browse files
committed
envoy: switch default WASM runtime to wasmtime
wasmtime is better maintained than WAMR (although they're both under the Bytecode Alliance umbrella), and tends to gain new features faster. Fixes NixOS#425065... ish, although it doesn't really solve the overall problem of needing a repin if you change which WASM runtime you want.
1 parent 6cfa3cf commit f89b85d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkgs/by-name/en/envoy/package.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
git,
2727

2828
# v8 (upstream default), wavm, wamr, wasmtime, disabled
29-
wasmRuntime ? "wamr",
29+
wasmRuntime ? "wasmtime",
3030

3131
# Allows overriding the deps hash used for building - you will likely need to
3232
# set this if you have changed the 'wasmRuntime' setting.
@@ -50,8 +50,8 @@ let
5050
depsHash
5151
else
5252
{
53-
x86_64-linux = "sha256-E6yUSd00ngmjaMds+9UVZLtcYhzeS8F9eSIkC1mZSps=";
54-
aarch64-linux = "sha256-ivboOrV/uORKVHRL3685aopcElGvzsxgVcUmYsBwzXY=";
53+
x86_64-linux = "sha256-t4Xv4UGYW5YU0kmv+1rdf2JvM1BYQyNWdtpz6Cdmxm4=";
54+
aarch64-linux = "sha256-aIBnNGzc0hTdlTgRyJ7eLnWvHqZ5ywhqOM+mHfH3/18=";
5555
}
5656
.${stdenv.system} or (throw "unsupported system ${stdenv.system}");
5757

0 commit comments

Comments
 (0)