mirror of
https://github.com/NotAShelf/microfetch.git
synced 2026-06-17 09:26:53 +00:00
29 lines
354 B
Nix
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
|
|
];
|
|
}
|