hnix/README.md

175 lines
5.3 KiB
Markdown
Raw Normal View History

2020-09-29 17:42:00 +02:00
[![Chatroom Gitter](https://img.shields.io/badge/Chatroom-Gitter-%23753a88)](https://gitter.im/haskell-nix/Lobby)
[![Hackage](https://img.shields.io/hackage/v/hnix?color=%235e5086&label=Latest%20release%20on%20Hackage)](https://hackage.haskell.org/package/hnix)
[![Hackage Matrix Builder](https://img.shields.io/badge/Hackage%20Matrix-Builder-%235e5086)](https://matrix.hackage.haskell.org/package/hnix)
[![Bounds](https://img.shields.io/hackage-deps/v/hnix?label=Released%20dep%20bounds)](https://packdeps.haskellers.com/feed?needle=hnix)
[![Hydra CI](https://img.shields.io/badge/Nixpkgs%20Hydra-CI-%234f72bb)](https://hydra.nixos.org/job/nixpkgs/trunk/haskellPackages.hnix.x86_64-linux#tabs-status)
[![Repology page](https://img.shields.io/badge/Repology-page-%23005500)](https://repology.org/project/haskell:hnix/versions)
# hnix
Parser, evaluator and type checker for the Nix language written in Haskell.
2020-09-29 17:42:00 +02:00
## Contents
<!-- TOC generates automatically, do not bother editing any further TOC text -->
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
2020-09-29 16:57:39 +02:00
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
- [Prerequisites](#prerequisites)
- [Getting Started](#getting-started)
- [Using the REPL](#using-the-repl)
- [Cachix prebuild binary caches](#cachix-prebuild-binary-caches)
- [Building](#building)
- [With benchmarks](#with-benchmarks)
- [With profiling](#with-profiling)
- [With full debug info](#with-full-debug-info)
- [Contributing](#contributing)
- [Evaluating Nixpkgs with HNix](#evaluating-nixpkgs-with-hnix)
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
2020-09-29 03:21:17 +02:00
## Prerequisites
2020-09-29 17:04:24 +02:00
Tooling is WIP, `nix-shell` and `nix-store` are still used for their purpose, so, to access them Nix is required to be installed.
## Getting Started
```
# Note: --recursive
git clone --recursive https://github.com/haskell-nix/hnix.git
cd hnix
```
### Development using Cabal
Cabal [Quickstart](https://cabal.readthedocs.io/en/3.4/nix-local-build.html).
1. (Optional), to enter and work in the reproducible Nix environemt:
```
nix-shell
```
Nix environment currenly defaults to the GHC 8.8, which is the default in Nixpkgs, drawback of it - compilation of `hnix` executable is enabled only for GHC 8.10.
2. Building:
```
cabal v2-configure
cabal v2-build
```
3. Loading the project into `ghci` REPL:
```
cabal v2-repl
```
4. Development status loop with amazing [`ghcid`](https://github.com/ndmitchell/ghcid):
```
ghcid --command="cabal v2-repl --repl-options=-fno-code --repl-options=-fno-break-on-exception --repl-options=-fno-break-on-error --repl-options=-v1 --repl-options=-ferror-spans --repl-options=-j"
```
(optional) To use projects reproducible environment, wrap `ghcid ...` command into a `nix-shell --command ' '`.
For simplicity alias it for your shell.
3. Testing:
* Default suite:
```
cabal v2-test
```
* All available tests:
```
env ALL_TESTS=yes cabal v2-test
```
* Selected (list of tests is in `tests/Main.hs`):
```
env NIXPKGS_TESTS=yes PRETTY_TESTS=1 cabal v2-test
```
2020-09-30 16:06:26 +02:00
Run built binary with Cabal:
```
cabal v2-run hnix -- --help
```
2020-09-30 16:06:26 +02:00
(`--` is for separation between `cabal` & `hnix` args)
2020-07-03 17:00:03 +02:00
## Using the REPL
Enter REPL:
2020-07-03 17:00:03 +02:00
```
hnix --repl
```
To evaluate an expression and make it available in the REPL as the `input` variable use:
2020-07-03 17:00:03 +02:00
```
hnix --eval -E '(import <nixpkgs> {}).pkgs.hello' --repl
```
Use the `:help` command for a list of all available REPL commands.
2020-09-29 16:12:47 +02:00
## Cachix prebuild binary caches
To autoload prebuild project dependencies - please, enable the official HNix Cachix binary cache:
1. Go through https://cachix.org/ and set it up.
2. Run: `cachix use hnix`
## Building
### With benchmarks
To run benchmarks:
```
cabal v2-bench
```
### With profiling
2018-04-10 20:49:18 +02:00
To build `hnix` with profiling enabled:
```
cabal v2-configure --enable-tests --enable-profiling --flags=profiling
cabal v2-run hnix -- <args> +RTS -p
2018-04-10 20:49:18 +02:00
```
### With full debug info
To build `hnix` for debugging, with full tracing output and stack traces:
```
cabal v2-configure --enable-tests --enable-profiling --flags=profiling --flags=tracing
cabal v2-run hnix -- -v5 --trace <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.
## Contributing
1. If something in the [quests](https://github.com/haskell-nix/hnix/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22+no%3Aassignee) looks interesting, look through the thread and leave a comment taking it, to let others know you're working on it.
2020-09-29 02:17:20 +02:00
2. You are free to chat with everyone on [Gitter](https://gitter.im/haskell-nix/Lobby).
3. When pull request is ready to be submitted, to save time - please, test it with:
```
git submodule update --init --recursive
nix-shell --run "LANGUAGE_TESTS=yes cabal v2-test"
```
2020-09-29 00:59:11 +02:00
Please, check that all tests that were passing prior (most probably all tests mentioned in the command) are still passing for the PR, it is faster to chech that locally then through CI. It's OK if no new tests are passing.
2018-11-18 17:44:52 +01:00
### Evaluating Nixpkgs with HNix
Currently the main high-level goal is to be able to evaluate all of Nixpkgs. To run this yourself, first build `hnix` with `nix-build`, then run the following command:
2018-11-18 17:44:52 +01:00
```
./result/bin/hnix --eval -E "import <nixpkgs> {}" --find
2018-11-18 17:44:52 +01:00
```