Go to file
2018-11-16 08:43:23 -08:00
dhall Add lower bound to optparse-applicative (#685) 2018-11-16 08:43:23 -08:00
dhall-bash Test build against ghc-8.6 (#669) 2018-11-03 07:27:12 -07:00
dhall-json Add support for multi-let (#675) 2018-11-13 08:01:59 -08:00
dhall-text Update stack/cabal config to sync with new structure (#671) 2018-11-06 05:42:23 -08:00
nix Test build against ghc-8.6 (#669) 2018-11-03 07:27:12 -07:00
.gitignore Replace .gitigore with one from github/gitignore (#264) 2018-02-14 10:03:39 -08:00
.travis.yml Make format and dhall subcommands of dhall executable (#452) 2018-06-10 19:54:22 +02:00
cabal.project Update stack/cabal config to sync with new structure (#671) 2018-11-06 05:42:23 -08:00
default.nix Migrate dhall-{bash,json,text} into this repository (#661) 2018-10-28 17:32:51 -07:00
LICENSE Migrate dhall-{bash,json,text} into this repository (#661) 2018-10-28 17:32:51 -07:00
README.md Update stack/cabal config to sync with new structure (#671) 2018-11-06 05:42:23 -08:00
release.nix Run tests in CI (#686) 2018-11-16 08:20:31 -08:00
stack-lts-6.yaml Update stack/cabal config to sync with new structure (#671) 2018-11-06 05:42:23 -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.yaml Update stack/cabal config to sync with new structure (#671) 2018-11-06 05:42:23 -08:00

dhall-haskell

This repository is a shared repository for all of the dhall-* Haskell packages, including:

Navigate to each package's directory for their respective READMEs

Quick start

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.

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

Development status

Build Status

The compiler is built upon a theoretically sound foundation, meaning that if there are no bugs then the language will never crash and will always halt. However, in practice the compiler needs to be battle-tested to weed out any implementation bugs, so please open issues! 🙂

Read the following guide if you would like to contribute: