mirror of
https://github.com/NotAShelf/microfetch.git
synced 2025-02-06 04:03:17 +00:00
26 lines
335 B
Nix
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}";
|
|
}
|