1
1
mirror of https://github.com/wez/wezterm.git synced 2024-08-17 02:00:25 +03:00

Add rust-src to Nix development shell

rust-analyzer can't find the standard library source code otherwise.
This commit is contained in:
V 2024-04-09 08:40:40 +02:00 committed by Wez Furlong
parent 84e8c966a1
commit bbbe9c2cea
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387

View File

@ -162,8 +162,12 @@
buildInputs =
buildInputs
++ (with pkgs.rust-bin; [
stable.latest.minimal
stable.latest.clippy
(stable.latest.minimal.override {
extensions = [
"clippy"
"rust-src"
];
})
nightly.latest.rustfmt
nightly.latest.rust-analyzer