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 + ]; }