use rust-analyzer nightly

This commit is contained in:
Sebastian Klähn
2024-05-10 18:10:01 +02:00
committed by link2xt
parent e5259176c9
commit 2f35d9a013

View File

@@ -525,14 +525,23 @@
}; };
}; };
devShells.default = pkgs.mkShell { devShells.default = let
pkgs = import nixpkgs {
system = system;
overlays = [ fenix.overlays.default ];
};
in pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
cargo (fenix.packages.${system}.complete.withComponents [
clippy "cargo"
rustc "clippy"
rustfmt "rust-src"
rust-analyzer "rustc"
"rustfmt"
])
cargo-deny cargo-deny
rust-analyzer-nightly
perl # needed to build vendored OpenSSL perl # needed to build vendored OpenSSL
git-cliff git-cliff
]; ];