stash/nix/shell.nix
2025-08-13 12:04:02 +04:00

21 lines
247 B
Nix

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