add dhall-json to shell.nix

Signed-off-by: Christine Dodrill <me@christine.website>
This commit is contained in:
Cadey Ratio 2021-05-16 17:40:56 +00:00
parent d5ac2e76e0
commit b6b58e2ef4
1 changed files with 2 additions and 4 deletions

View File

@ -1,7 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
buildInputs = with pkgs; [
dhall go goimports gopls cdrkit
];
buildInputs = with pkgs; [ dhall dhall-json go goimports gopls cdrkit ];
}