microfetch/nix/shell.nix
2026-06-16 00:15:10 -04:00

29 lines
354 B
Nix

{
mkShell,
cargo,
rustc,
wild,
clang,
rust-analyzer,
rustfmt,
clippy,
taplo,
gnuplot,
}:
mkShell {
name = "microfetch";
strictDeps = true;
nativeBuildInputs = [
cargo
rustc
wild
clang
rust-analyzer
(rustfmt.override {asNightly = true;})
clippy
taplo
gnuplot # for Criterion.rs plots
];
}