Skip to content

Commit f26f6eb

Browse files
TerrorJackpalas
authored andcommitted
cardano-wasm: use envoy-bin in wasm nix devshell
This patch makes the wasm nix devshell use envoy-bin instead of envoy from nixpkgs, given envoy build on nixos hydra has been broken for a long time: NixOS/nixpkgs#438433. This is also blocking ghc-wasm-meta from upgrading to nixos-25.11 nixpkgs channel at the moment, since cardano-wasm build is included as a part of our integration tests.
1 parent ea4878c commit f26f6eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@
252252
wasm.secp256k1
253253
wasm.blst
254254
]
255-
++ lib.optional (system == "x86_64-linux" || system == "aarch64-linux") wasm-pkgs.envoy;
255+
++ lib.optional (system == "x86_64-linux" || system == "aarch64-linux") wasm-pkgs.envoy-bin;
256256
};
257257
};
258258
playwrightShell = let

0 commit comments

Comments
 (0)