mirror of
https://github.com/youwen5/nix-dev-envs.git
synced 2024-11-24 18:33:50 -08:00
feat: add rust-analyzer to all rust outputs
This commit is contained in:
parent
9abdc1e6be
commit
a4e9d79292
1 changed files with 3 additions and 0 deletions
|
@ -60,18 +60,21 @@
|
||||||
rustBeta = pkgs.mkShell {
|
rustBeta = pkgs.mkShell {
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
rust-bin.beta.latest.default
|
rust-bin.beta.latest.default
|
||||||
|
rust-analyzer
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
rustNightly = pkgs.mkShell {
|
rustNightly = pkgs.mkShell {
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
rust-bin.nightly.latest.default
|
rust-bin.nightly.latest.default
|
||||||
|
rust-analyzer
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
rustStable = pkgs.mkShell {
|
rustStable = pkgs.mkShell {
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
rust-bin.stable.latest.default
|
rust-bin.stable.latest.default
|
||||||
|
rust-analyzer
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue