Skip to content

Commit

Permalink
always add rust-std for the default target
Browse files Browse the repository at this point in the history
  • Loading branch information
eyJhb committed Oct 6, 2024
1 parent c7fd42f commit e8c2b48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/languages/rust.nix
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ in

packages = [
(combine "rust-mixed" (
(map (c: cfg.toolchain.${c}) cfg.components) ++
(map (c: cfg.toolchain.${c}) (cfg.components ++ [ "rust-std" ])) ++
(map (t: toolchain._components.${t}.rust-std) cfg.targets)
))
];
Expand Down

0 comments on commit e8c2b48

Please sign in to comment.