We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have a working flake for using wasm-pack in NixOS, but I am not sure if using rustc and rustup better than using rust-overlay like https://github.com/oxalica/rust-overlay. Any thoughts?
wasm-pack
rustc
rustup
rust-overlay
{ description = "joli-string"; outputs = { self, nixpkgs }: let system = "x86_64-linux"; in { devShell.${system} = (({ pkgs, ... }: pkgs.mkShell { buildInputs = with pkgs; [ wasm-pack cargo (rustc.override { stdenv = stdenv.override { targetPlatform = { isRedox = false; isMusl = false; parsed = { cpu = { name = "wasm32"; }; vendor = { name = "unknown"; }; kernel = { name = "unknown"; }; abi = { name = "unknown"; }; }; }; }; }) rustup ]; shellHook = ""; }) { pkgs = nixpkgs.legacyPackages.${system}; }); }; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a working flake for using
wasm-pack
in NixOS, but I am not sure if usingrustc
andrustup
better than usingrust-overlay
like https://github.com/oxalica/rust-overlay. Any thoughts?The text was updated successfully, but these errors were encountered: