From 322726466fd2243a4879ab06146e49258d3fbad3 Mon Sep 17 00:00:00 2001 From: vali Date: Thu, 15 Aug 2024 18:25:07 +0200 Subject: [PATCH] shell.nix: add gnuplot Since Criterion.rs uses gnuplot to generate nice plots, add it to the shell. --- nix/shell.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nix/shell.nix b/nix/shell.nix index 58f014c..2350dbd 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -16,11 +16,12 @@ mkShell { cargo rustc gcc - gnuplot rust-analyzer-unwrapped rustfmt clippy + + gnuplot # For Criterion.rs plots ]; env.RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";