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 {
|
||||
buildInputs = with pkgs; [
|
||||
rust-bin.beta.latest.default
|
||||
rust-analyzer
|
||||
];
|
||||
};
|
||||
|
||||
rustNightly = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
rust-bin.nightly.latest.default
|
||||
rust-analyzer
|
||||
];
|
||||
};
|
||||
|
||||
rustStable = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
rust-bin.stable.latest.default
|
||||
rust-analyzer
|
||||
];
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue