microfetch/nix/shell.nix
NotAShelf 9c897b5960
Some checks failed
Rust / build (push) Has been cancelled
nix: enable parallel building; clean up devshell
2025-01-26 01:24:16 +03:00

26 lines
335 B
Nix

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