Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Ie10228eac138766923d6325f4b06070f6a6a6964
27 lines
310 B
Nix
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
|
|
];
|
|
}
|