stash/nix/shell.nix
NotAShelf dca7cca455
nix: add cargo-nextest to devshell
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I2266c2f3fccff23fa3950f8fac3365f36a6a6964
2026-01-22 13:41:55 +03:00

30 lines
396 B
Nix

{
mkShell,
rustc,
cargo,
rustfmt,
clippy,
taplo,
rust-analyzer-unwrapped,
cargo-nextest,
rustPlatform,
}:
mkShell {
name = "rust";
packages = [
rustc
cargo
(rustfmt.override {asNightly = true;})
clippy
cargo
taplo
rust-analyzer-unwrapped
# Additional Cargo Tooling
cargo-nextest
];
RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
}