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,
rust-analyzer,
rustfmt,
rustc,
clippy,
cargo,
rustfmt,
clippy,
taplo,
rust-analyzer-unwrapped,
rustPlatform,
}:
mkShell {
name = "rust";
packages = [
rust-analyzer
rustfmt
rustc
cargo
(rustfmt.override {asNightly = true;})
clippy
cargo
rustc
taplo
rust-analyzer-unwrapped
];
RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";