You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to package javy with Nix, with the help of fenix because it needs the wasm32-wasi toolchain.
I'm not using flakes, and there doesn't seem to be an example that exactly covers my use-case. Here's my default.nix:
let# sources.nix is generated using `niv`sources=import./sources.nix{};pkgs=importsources.nixpkgs{};fenix=importsources.fenix{};toolchain=fenix.targets.wasm32-wasi.stable.toolchain;in{javy=pkgs.callPackage./javy.nix{rustPlatform=pkgs.makeRustPlatform{cargo=toolchain;rustc=toolchain;};};}
I'm not sure if I'm using fenix correctly.
If I am, maybe you can help me with the error I'm getting when I reach this line in the buildPhase:
I'm trying to package javy with Nix, with the help of fenix because it needs the
wasm32-wasi
toolchain.I'm not using flakes, and there doesn't seem to be an example that exactly covers my use-case. Here's my default.nix:
I'm not sure if I'm using
fenix
correctly.If I am, maybe you can help me with the error I'm getting when I reach this line in the
buildPhase
:Full stack trace:
Will appreciate any help. Thanks for reading (and for
fenix
)!The text was updated successfully, but these errors were encountered: