stash/nix/shell.nix
NotAShelf 404990f928
nix: update devshell
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I6a6a696451203d6ac74ae44dddec1bdce19e78d9
2025-08-20 09:57:43 +03:00

26 lines
329 B
Nix

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