From d8cb5dd5ffde35b6e479cff6ac90255fc8be952f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Fri, 21 Feb 2025 09:47:54 +0000 Subject: [PATCH] rustc: add wasm32v1-none target --- pkgs/development/compilers/rust/rustc.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/compilers/rust/rustc.nix b/pkgs/development/compilers/rust/rustc.nix index 6e8dfcc023c94..ffaa711e7cd21 100644 --- a/pkgs/development/compilers/rust/rustc.nix +++ b/pkgs/development/compilers/rust/rustc.nix @@ -161,6 +161,7 @@ stdenv.mkDerivation (finalAttrs: { # Other targets that don't need any extra dependencies to build. ++ optionals (!fastCross) [ "wasm32-unknown-unknown" + "wasm32v1-none" "bpfel-unknown-none" "bpfeb-unknown-none" ]