-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
behavior of dx build
has changed to simplify overriding build utilities
#1
Comments
I've updated the flake to use dx 0.6.2 and wasm-bindgen 0.2.100.
|
Oh yeah. I ran into that too. My solution was to build a newer dx = let
naersk' = pkgs.callPackage inputs.naersk {};
in
naersk'.buildPackage {
name = "dioxus-cli";
src = inputs.dioxus;
cargoBuildOptions = prev: prev ++ ["-p" "dioxus-cli"];
meta.mainProgram = "dx";
}; I'm working on a flake-parts module I'd be happy to share down the line. |
we know why this happens now DioxusLabs/dioxus#3659 I'm applying the patch in the flake to still use optimizations |
dioxus-cli
can now take aNO_DOWNLOADS=1
environment variable. When you set that, it does not attempt to fetch utilities and can instead be trusted to pull them directly from the local enviornment. That ought to drastically simplify theflake.nix
code.See this PR: DioxusLabs/dioxus#3465
The text was updated successfully, but these errors were encountered: