dhall-haskell/README.md

93 lines
2.4 KiB
Markdown
Raw Normal View History

# `dhall-haskell`
2016-12-05 05:04:50 +01:00
You will probably want to read the language-agnostic `README` here:
2016-12-05 05:04:50 +01:00
* [`dhall-lang` `README`](https://github.com/dhall-lang/dhall-lang/blob/master/README.md)
2016-12-05 05:04:50 +01:00
This repository focuses on the Haskell bindings to Dhall and contains
the following packages:
* [`dhall`](./dhall) - [![Hackage](https://img.shields.io/hackage/v/dhall-bash.svg)](https://hackage.haskell.org/package/dhall-bash)
* [`dhall-bash`](./dhall-bash) - [![Hackage](https://img.shields.io/hackage/v/dhall-bash.svg)](https://hackage.haskell.org/package/dhall-bash)
* [`dhall-json`](./dhall-json) - [![Hackage](https://img.shields.io/hackage/v/dhall-json.svg)](https://hackage.haskell.org/package/dhall-json)
* [`dhall-text`](./dhall-text) - [![Hackage](https://img.shields.io/hackage/v/dhall-text.svg)](https://hackage.haskell.org/package/dhall-text)
Navigate to each package's directory for their respective `README`s
## Building from source
### [cabal](https://www.haskell.org/cabal)
You can build all of the packages by running:
```console
$ cabal new-build all
```
And each of them with `cabal new-build <package-name>`, for example:
```console
$ cabal new-build dhall
2016-12-05 05:04:50 +01:00
```
... or you can run `cabal new-build` within each package directory.
### [nix](https://nixos.org/nix/)
You can build all of the packages by running:
```console
$ nix-build
```
2016-12-05 05:04:50 +01:00
... or you can run `nix-build` within each package's respective directory to
build just that one package.
2016-12-05 05:04:50 +01:00
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:
```bash
$ 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`:
```bash
$ cabal configure
$ cabal build
$ cabal test
```
### [stack](https://docs.haskellstack.org)
You can build all of the packages with
```console
$ stack build
```
And each of them with `stack build <package-name>`, for example:
```console
$ stack build dhall-json
```
## Contributing
Read the following guide if you would like to contribute:
* [Contributing to Dhall](https://github.com/dhall-lang/dhall-lang/blob/master/.github/CONTRIBUTING.md)