mirror of
https://github.com/NotAShelf/stash.git
synced 2026-04-12 22:17:41 +00:00
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I6a6a69646c6d8861791ac018543ebd16619a53d3
19 lines
228 B
Nix
19 lines
228 B
Nix
{
|
|
mkShell,
|
|
rust-analyzer,
|
|
rustfmt,
|
|
clippy,
|
|
cargo,
|
|
rustPlatform,
|
|
}:
|
|
mkShell {
|
|
name = "rust";
|
|
packages = [
|
|
rust-analyzer
|
|
rustfmt
|
|
clippy
|
|
cargo
|
|
];
|
|
|
|
RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
|
|
}
|