eh/nix/shell.nix
NotAShelf 01dfbd69e5
nix: add cargo-nextets to devshell; minor cleanup
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ie10228eac138766923d6325f4b06070f6a6a6964
2026-05-13 08:44:06 +03:00

27 lines
310 B
Nix

{
mkShell,
rustc,
cargo,
rustfmt,
clippy,
taplo,
rust-analyzer,
cargo-nextest,
}:
mkShell {
name = "rust";
strictDeps = true;
nativeBuildInputs = [
rustc
cargo
(rustfmt.override {asNightly = true;})
clippy
cargo
taplo
rust-analyzer
cargo-nextest
];
}