hnix/README.md

81 lines
2.3 KiB
Markdown
Raw Normal View History

# hnix
2018-04-24 07:48:19 +03:00
[![Build Status](https://api.travis-ci.org/haskell-nix/hnix.svg)](https://travis-ci.org/haskell-nix/hnix)
2018-05-03 21:42:57 +03:00
[![Chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/haskell-nix/Lobby)
2018-04-24 07:48:19 +03:00
2018-04-03 10:33:30 +03:00
Haskell parser, evaluator and type checker for the Nix language.
## Prerequisites
2018-04-05 01:05:58 +03:00
Nix is installed and in your `$PATH`. This is so that `nix-store` can be used
for interacting with store paths, until `hnix-store` is ready.
## Getting Started
```bash
2018-04-24 07:48:19 +03:00
$ git clone --recursive https://github.com/haskell-nix/hnix.git
...
$ cd hnix
$ nix-shell
$ cabal configure --enable-tests
$ cabal build
$ cabal test
2018-04-12 20:28:16 +03:00
# To run all of the tests, which takes up to a minute:
$ LANGUAGE_TESTS=yes NIXPKGS_TESTS=yes cabal test
2018-04-03 10:33:30 +03:00
$ ./dist/build/hnix/hnix --help
```
## Building with full debug info
To build `hnix` for debugging, and with full tracing output and stack traces,
use:
```
$ nix-shell --arg doProfiling true
$ cabal configure --enable-tests --enable-profiling --flags=tracing
$ cabal build
$ ./dist/build/hnix/hnix -v5 <args> +RTS -xc
```
Note that this will run quite slowly, but will give the most information as to
what might potentially be going wrong during parsing or evaluation.
## Building with benchmarks enabled
To build `hnix` with benchmarks enabled:
```
$ nix-shell --arg doBenchmarks true
$ cabal configure --enable-tests --enable-benchmarks
$ cabal build
$ cabal bench
```
2018-04-10 21:49:18 +03:00
## Building with profiling enabled
To build `hnix` with profiling enabled:
```
$ nix-shell --arg doProfiling true
$ cabal configure --enable-tests --enable-profiling
$ cabal build
2018-04-10 21:49:18 +03:00
$ ./dist/build/hnix/hnix <args> +RTS -p
```
## How you can help
2018-04-13 07:20:23 +03:00
If you're looking for a way to help out, try taking a look
2018-04-24 07:48:19 +03:00
[here](https://github.com/haskell-nix/hnix/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22+no%3Aassignee).
2018-04-13 07:20:23 +03:00
When you find an issue that looks interesting to you, comment on the ticket to
let others know you're working on it; look for others who might have done the
same. You can talk with everyone live on
[Gitter](https://gitter.im/haskell-nix/Lobby).
When you're ready to submit a pull request, test it with:
```
2018-04-04 09:46:32 +03:00
git submodule update --init --recursive
nix-shell --run "LANGUAGE_TESTS=yes cabal test"
```
2018-04-13 07:20:23 +03:00
Make sure that all the tests that were passing prior to your PR are still
passing afterwards; it's OK if no new tests are passing.