Eris/nix/shell.nix
NotAShelf dd7e41eb64
nix: clean up devshell
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ia844e89f1450cce1625c57c9d81279706a6a6964
2026-03-01 00:36:46 +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}";
}