stash/nix/shell.nix
NotAShelf 5687d2d6cd
initial commit
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I6a6a69646c6d8861791ac018543ebd16619a53d3
2025-08-12 15:01:13 +03:00

19 lines
228 B
Nix

{
mkShell,
rust-analyzer,
rustfmt,
clippy,
cargo,
rustPlatform,
}:
mkShell {
name = "rust";
packages = [
rust-analyzer
rustfmt
clippy
cargo
];
RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
}