mirror of
https://github.com/justinwoo/easy-dhall-nix.git
synced 2024-11-14 23:29:41 +01:00
3eec0cfb18
We should make the test auto-discover which executables to search for. Maybe even have some functional tests which run the executables.
19 lines
324 B
Nix
19 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
|
|
];
|
|
}
|