From bd6baadd52a866b2e52aae05c623fe503b6a0e40 Mon Sep 17 00:00:00 2001 From: justinwoo Date: Sat, 8 Dec 2018 15:07:31 +0200 Subject: [PATCH] update tests --- shell.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/shell.nix b/shell.nix index 1435bfe..0c43568 100644 --- a/shell.nix +++ b/shell.nix @@ -1,6 +1,12 @@ { pkgs ? import {} }: -pkgs.stdenv.mkDerivation { +let easy-dhall = import ./default.nix { inherit pkgs; }; +in pkgs.stdenv.mkDerivation { name = "easy-dhall-nix-shell"; - buildInputs = builtins.attrValues (import ./default.nix { inherit pkgs; }); + buildInputs = [ + easy-dhall.dhall-simple + easy-dhall.dhall-json-simple + easy-dhall.dhall-bash-simple + easy-dhall.dhall-text-simple + ]; }