diff options
author | Jani Mustonen <janijohannes@kapsi.fi> | 2017-08-05 18:40:00 +0300 |
---|---|---|
committer | mujx <mujx@users.noreply.github.com> | 2017-08-05 18:40:00 +0300 |
commit | 486676f24887355a0e74f418205d5b90ffaf900d (patch) | |
tree | 2201eacade3cab64b79ddee0e837cd32486f6b07 /README.md | |
parent | Drop support for XCode 7 (diff) | |
download | nheko-486676f24887355a0e74f418205d5b90ffaf900d.tar.xz |
Add basic nix expressions (#47)
Allows `nix-build` for basic building and `nix-env -f . -i` for installing.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md index 335192e5..7395dbc9 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,18 @@ make -C build The `nheko` binary will be located in the `build` directory. +##### Nix + +Download the repo as mentioned above and run + +```bash +nix-build +``` + +in the project folder. This will output a binary to `result/bin/nheko`. + +You can also install nheko by running `nix-env -f . -i` + ### Contributing Any kind of contribution to the project is greatly appreciated. You are also |