microfetch/nix/shell.nix
2024-08-15 17:53:25 +02:00

27 lines
324 B
Nix

{
mkShell,
rust-analyzer-unwrapped,
rustfmt,
clippy,
cargo,
rustc,
gcc,
rustPlatform,
gnuplot,
}:
mkShell {
strictDeps = true;
nativeBuildInputs = [
cargo
rustc
gcc
gnuplot
rust-analyzer-unwrapped
rustfmt
clippy
];
env.RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
}