1
Fork 0
mirror of https://github.com/RGBCube/superfreq synced 2025-07-27 17:07:44 +00:00
superfreq/nix/shell.nix
bloxx12 0d91c57d99
nix: init tooling (#5)
Co-authored-by: Bloxx12 <blox@blox>
2025-05-13 16:09:50 +00:00

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}";
}