mirror of
https://github.com/RGBCube/superfreq
synced 2025-07-28 01:17:45 +00:00
20 lines
254 B
Nix
20 lines
254 B
Nix
{
|
|
mkShell,
|
|
rust-analyzer-unwrapped,
|
|
rustfmt,
|
|
clippy,
|
|
cargo,
|
|
rustc,
|
|
rustPlatform,
|
|
}:
|
|
mkShell {
|
|
packages = [
|
|
cargo
|
|
clippy
|
|
rustc
|
|
rustfmt
|
|
rust-analyzer-unwrapped
|
|
];
|
|
|
|
env.RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
|
|
}
|