From 535ce6ce97777a2ef059833cf8a57f121319a40c Mon Sep 17 00:00:00 2001 From: Thomas Hobson Date: Sat, 13 Mar 2021 19:53:57 +1300 Subject: [PATCH] dev(shell.nix): add jq to shell --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index f9063bc..f43b1b4 100644 --- a/shell.nix +++ b/shell.nix @@ -1,5 +1,5 @@ { pkgs ? import {} }: pkgs.mkShell { # nativeBuildInputs is usually what you want -- tools you need to run - nativeBuildInputs = [ pkgs.nodejs-15_x pkgs.yarn ]; + nativeBuildInputs = [ pkgs.nodejs-15_x pkgs.yarn pkgs.jq ]; } \ No newline at end of file