mirror of
https://github.com/NotAShelf/stash.git
synced 2026-04-12 14:07:42 +00:00
21 lines
247 B
Nix
21 lines
247 B
Nix
{
|
|
mkShell,
|
|
rust-analyzer,
|
|
rustfmt,
|
|
rustc,
|
|
clippy,
|
|
cargo,
|
|
rustPlatform,
|
|
}:
|
|
mkShell {
|
|
name = "rust";
|
|
packages = [
|
|
rust-analyzer
|
|
rustfmt
|
|
clippy
|
|
cargo
|
|
rustc
|
|
];
|
|
|
|
RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
|
|
}
|