dev(shell.nix): add jq to shell

This commit is contained in:
Thomas Hobson 2021-03-13 19:53:57 +13:00
parent 09779c6bf2
commit 535ce6ce97
No known key found for this signature in database
GPG Key ID: 9F1FD9D87950DB6F
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
{ pkgs ? import <nixpkgs> {} }: { pkgs ? import <nixpkgs> {} }:
pkgs.mkShell { pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run # 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 ];
} }