Replies: 1 comment
-
You got it! Do note that it is recommended to flatten the list, as --- a/shell.nix
+++ b/shell.nix
@@ -7,13 +7,12 @@ let
wasm32-unknown-unknown.stable.rust-std
x86_64-unknown-linux-musl.stable.rust-std
];
- rust = with rust_stable; (fenix.combine [
+ rust = with rust_stable; (fenix.combine ([
rustc
cargo
clippy
rustfmt
- rust_targets
- ]);
+ ] ++ rust_targets));
in
with pkgs;
mkShell { |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm sorry for bothering you but how I can get the
wasm32-unknown-unknown
target in an overlay?edit: I managed to do this now in my
shell.nix
:Beta Was this translation helpful? Give feedback.
All reactions