From 93cac61fd2125eb842310a60d377f9c4738aeb3f Mon Sep 17 00:00:00 2001 From: Samuel Balco Date: Wed, 21 Aug 2024 14:05:39 +0100 Subject: [PATCH] Include `which` in the nix dev shell (#2590) --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 5f32cac189..aecf80dd17 100644 --- a/flake.nix +++ b/flake.nix @@ -180,7 +180,7 @@ in { packages.default = kevm; devShell = pkgs.mkShell { - buildInputs = buildInputs pkgs ++ [ pkgs.poetry-nixpkgs ]; + buildInputs = buildInputs pkgs ++ [ pkgs.poetry-nixpkgs pkgs.which ]; shellHook = '' export NIX_LIBS="${nixLibs pkgs}"