From b6b58e2ef463bc874df47bff4303c2310f60a169 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sun, 16 May 2021 17:40:56 +0000 Subject: [PATCH] add dhall-json to shell.nix Signed-off-by: Christine Dodrill --- shell.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/shell.nix b/shell.nix index b43306e..245f9b9 100644 --- a/shell.nix +++ b/shell.nix @@ -1,7 +1,5 @@ -{ pkgs ? import {} }: +{ pkgs ? import { } }: pkgs.mkShell { - buildInputs = with pkgs; [ - dhall go goimports gopls cdrkit - ]; + buildInputs = with pkgs; [ dhall dhall-json go goimports gopls cdrkit ]; }