nix: update devshell

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I6a6a696451203d6ac74ae44dddec1bdce19e78d9
This commit is contained in:
raf 2025-08-20 09:40:06 +03:00
commit 404990f928
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -1,20 +1,25 @@
{ {
mkShell, mkShell,
rust-analyzer,
rustfmt,
rustc, rustc,
clippy,
cargo, cargo,
rustfmt,
clippy,
taplo,
rust-analyzer-unwrapped,
rustPlatform, rustPlatform,
}: }:
mkShell { mkShell {
name = "rust"; name = "rust";
packages = [ packages = [
rust-analyzer rustc
rustfmt cargo
(rustfmt.override {asNightly = true;})
clippy clippy
cargo cargo
rustc taplo
rust-analyzer-unwrapped
]; ];
RUST_SRC_PATH = "${rustPlatform.rustLibSrc}"; RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";