diff --git a/benchmarks/shell.nix b/benchmarks/shell.nix new file mode 100644 index 0000000..f7f37ae --- /dev/null +++ b/benchmarks/shell.nix @@ -0,0 +1,22 @@ +{ pkgs ? import { } }: + +with pkgs; + +let + ouch = rustPlatform.buildRustPackage { + pname = "ouch"; + inherit ((lib.importTOML ../Cargo.toml).package) version; + src = ../.; + cargoLock.lockFile = ../Cargo.lock; + }; +in + +mkShell { + packages = [ + gnutar + hyperfine + ouch + unzip + zip + ]; +}