Go to file
Gabriel Gonzalez 8f3e913cde
Use git submodule to obtain official Prelude and test suite (#787)
Fixes https://github.com/dhall-lang/dhall-haskell/issues/766
2019-01-19 09:09:34 -08:00
dhall Use git submodule to obtain official Prelude and test suite (#787) 2019-01-19 09:09:34 -08:00
dhall-bash Version 1.19.1 → 1.20.0 (#767) 2018-12-29 11:48:21 -06:00
dhall-json Version 1.19.1 → 1.20.0 (#767) 2018-12-29 11:48:21 -06:00
dhall-text Version 1.19.1 → 1.20.0 (#767) 2018-12-29 11:48:21 -06:00
dhall-try Version 1.19.1 → 1.20.0 (#767) 2018-12-29 11:48:21 -06:00
nix Fix Nix build to reinstate `-Werror` (#781) 2019-01-16 19:39:51 -08:00
.gitignore Replace .gitigore with one from github/gitignore (#264) 2018-02-14 10:03:39 -08:00
.gitmodules Use git submodule to obtain official Prelude and test suite (#787) 2019-01-19 09:09:34 -08:00
.travis.yml Make format and dhall subcommands of dhall executable (#452) 2018-06-10 19:54:22 +02:00
LICENSE Migrate `dhall-{bash,json,text}` into this repository (#661) 2018-10-28 17:32:51 -07:00
README.md Add contributing instructions for the website (#760) 2018-12-20 10:36:10 -08:00
cabal.project Update stack/cabal config to sync with new structure (#671) 2018-11-06 05:42:23 -08:00
default.nix Add contributing instructions for the website (#760) 2018-12-20 10:36:10 -08:00
release.nix Add contributing instructions for the website (#760) 2018-12-20 10:36:10 -08:00
stack-lts-6.yaml Add eta support and update stack config to lts-13 (#778) 2019-01-11 19:35:39 -08:00
stack-lts-11.yaml Update stack/cabal config to sync with new structure (#671) 2018-11-06 05:42:23 -08:00
stack-lts-12.yaml Add eta support and update stack config to lts-13 (#778) 2019-01-11 19:35:39 -08:00
stack.yaml Add eta support and update stack config to lts-13 (#778) 2019-01-11 19:35:39 -08:00

README.md

dhall-haskell

You will probably want to read the language-agnostic README here:

This repository focuses on the Haskell bindings to Dhall and contains the following packages:

Navigate to each package's directory for their respective READMEs

Pre-built binaries

You can download pre-built binaries for Windows and Linux on the release page:

For OS X, use brew to install the desired package. For example:

$ brew install dhall-json

Building from source

cabal

You can build all of the packages by running:

$ cabal new-build all

And each of them with cabal new-build <package-name>, for example:

$ cabal new-build dhall

... or you can run cabal new-build within each package directory.

nix

You can build all of the packages by running:

$ nix-build

... or you can run nix-build within each package's respective directory to build just that one package.

You can install all of the packages by running:

$ nix-env --install --file default.nix

... or you can run the same command within each package's respective directory to install just that one package.

You can develop any package by navigating to that package's directory and running:

$ nix-shell
[nix-shell]$ cabal configure
[nix-shell]$ cabal build
[nix-shell]$ cabal test

... or you can add nix: True to your ~/.cabal/config file and then you can run the same cabal commands without an explicit nix-shell:

$ cabal configure
$ cabal build
$ cabal test

stack

You can build all of the packages with

$ stack build

And each of them with stack build <package-name>, for example:

$ stack build dhall-json

Build the website

Building the website from source is currently only supported for Nix on Linux.

You can build the static assets by running:

$ nix-build --attr website

... then open ./result/index.html in your browser.

You can also download an archive containing the pre-built website from CI using this link:

Contributing

Read the following guide if you would like to contribute: