nff/nix/shell.nix

23 lines
298 B
Nix

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