Go to file
Gabriel Gonzalez 203a22818e
Fix bug when linting multi-let expressions (#703)
`dhall lint` was incorrectly deleting `let` bindings that are being used
due to not checking other `let` bindings within the same multi-`let`
expression for free variable occurrences.

This change fixes that and adds the first regression test for `dhall
lint`
2018-11-24 08:32:04 -08:00
dhall Fix bug when linting multi-let expressions (#703) 2018-11-24 08:32:04 -08:00
dhall-bash Fix dhall-bash version to 1.0.17 (#695) 2018-11-21 19:30:03 -08:00
dhall-json Version 1.18.0 → 1.19.0 (#691) 2018-11-21 19:10:32 -08:00
dhall-text Version 1.18.0 → 1.19.0 (#691) 2018-11-21 19:10:32 -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: