dhall-haskell/default.nix
Gabriel Gonzalez 2635c582eb
Add contributing instructions for the website (#760)
This is so that I can link people to the `README` if they are interested in
improving the site
2018-12-20 10:36:10 -08:00

16 lines
363 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) dhall dhall-bash dhall-json dhall-text;
inherit (shared_ghcjs) dhall-try;
inherit (shared_ghcjs_linux) website;
}