From 886d16bcc627a7d45aa21dc41d987885f65b743b Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Thu, 14 Jan 2021 12:30:56 +0100 Subject: [PATCH] garlic tool: add jq as dependency So we can parse the experiment configuration in JSON --- garlic/sh/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/garlic/sh/default.nix b/garlic/sh/default.nix index 63d252a..324297b 100644 --- a/garlic/sh/default.nix +++ b/garlic/sh/default.nix @@ -5,6 +5,7 @@ , rsync , openssh , nix +, jq }: with garlicTools; @@ -16,7 +17,7 @@ in name = "garlic-tool"; preferLocalBuild = true; - buildInputs = [ rsync openssh nix ]; + buildInputs = [ rsync openssh nix jq ]; phases = [ "unpackPhase" "installPhase" ]; src = ./.;