mirror of
https://github.com/NotAShelf/microfetch.git
synced 2025-11-25 16:52:50 +00:00
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Ie4a1b5a29166931aac006a44874374346a6a6964
28 lines
385 B
Nix
28 lines
385 B
Nix
{
|
|
mkShell,
|
|
rust-analyzer-unwrapped,
|
|
rustfmt,
|
|
clippy,
|
|
cargo,
|
|
taplo,
|
|
rustc,
|
|
rustPlatform,
|
|
gnuplot,
|
|
}:
|
|
mkShell {
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
cargo
|
|
rustc
|
|
|
|
rust-analyzer-unwrapped
|
|
(rustfmt.override {asNightly = true;})
|
|
clippy
|
|
taplo
|
|
|
|
gnuplot # For Criterion.rs plots
|
|
];
|
|
|
|
env.RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
|
|
}
|