garlic tool: add jq as dependency

So we can parse the experiment configuration in JSON
This commit is contained in:
Rodrigo Arias 2021-01-14 12:30:56 +01:00
parent 5c0f179830
commit 886d16bcc6

View File

@ -5,6 +5,7 @@
, rsync , rsync
, openssh , openssh
, nix , nix
, jq
}: }:
with garlicTools; with garlicTools;
@ -16,7 +17,7 @@ in
name = "garlic-tool"; name = "garlic-tool";
preferLocalBuild = true; preferLocalBuild = true;
buildInputs = [ rsync openssh nix ]; buildInputs = [ rsync openssh nix jq ];
phases = [ "unpackPhase" "installPhase" ]; phases = [ "unpackPhase" "installPhase" ];
src = ./.; src = ./.;