mirror of
https://github.com/NotAShelf/stash.git
synced 2026-04-12 14:07:42 +00:00
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I2266c2f3fccff23fa3950f8fac3365f36a6a6964
30 lines
396 B
Nix
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}";
|
|
}
|