dhall-haskell/default.nix
Simon Jakobi cd49b65c23 Move HsYAML-based code to new package dhall-yaml (#1514)
* Shared code for the dhall-to-yaml[-ng] executables stays in dhall-json.
* Shared tests are in dhall-yaml.

Fixes #1435.
2019-11-07 12:11:04 +00:00

23 lines
447 B
Nix

let
shared = import ./nix/shared.nix {};
shared_ghcjs = import ./nix/shared.nix { compiler = "ghcjs"; };
shared_ghcjs_linux =
import ./nix/shared.nix { compiler = "ghcjs"; system = "x86_64-linux"; };
in
{ inherit (shared.possibly-static)
dhall
dhall-bash
dhall-json
dhall-lsp-server
dhall-nix
dhall-yaml
;
inherit (shared_ghcjs) dhall-try;
inherit (shared_ghcjs_linux) website;
}