Skip to content

Commit e8c2b48

Browse files
committed
always add rust-std for the default target
1 parent c7fd42f commit e8c2b48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/languages/rust.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ in
211211

212212
packages = [
213213
(combine "rust-mixed" (
214-
(map (c: cfg.toolchain.${c}) cfg.components) ++
214+
(map (c: cfg.toolchain.${c}) (cfg.components ++ [ "rust-std" ])) ++
215215
(map (t: toolchain._components.${t}.rust-std) cfg.targets)
216216
))
217217
];

0 commit comments

Comments
 (0)