mirror of
https://github.com/RGBCube/superfreq
synced 2025-07-27 17:07:44 +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}";
|
|
}
|