easy-dhall-nix/shell.nix
Profpatsch 3eec0cfb18 fix(tests): add lsp & docs to tests
We should make the test auto-discover which executables to search for.
Maybe even have some functional tests which run the executables.
2020-11-06 11:33:56 +01:00

20 lines
324 B
Nix

let
pkgs = import ./nixpkgs.nix {};
default = import ./default.nix {
inherit pkgs;
};
in
with default; pkgs.mkShell {
buildInputs = [
dhall-simple
dhall-json-simple
dhall-bash-simple
dhall-nix-simple
dhall-yaml-simple
dhall-lsp-simple
dhall-docs-simple
];
}