konservejo/nix/shell.nix
NotAShelf 646016ec77
nix: initial tooling
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: If73b2f64914bc4fe934eba44985e34646a6a6964
2026-03-17 16:18:11 +03:00

30 lines
No EOL
341 B
Nix

{
mkShell,
rustc,
cargo,
rust-analyzer-unwrapped,
rustfmt,
clippy,
taplo,
rustPlatform,
}:
mkShell {
name = "rust";
strictDeps = true;
packages = [
rustc
cargo
# Tools
rustfmt
clippy
cargo
taplo
# LSP
rust-analyzer-unwrapped
];
RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
}