pscand/nix/shell.nix
NotAShelf 033e253259
initial commit
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ib131388c1056b6708b730a35011811026a6a6964
2026-02-19 00:13:08 +03:00

30 lines
342 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}";
}