aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: d7c6cb858948211c776849de80772b2caee0d96d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# GSA Parser

## Build Instructions

First, install nix:

``` sh
curl -L https://nixos.org/nix/install | sh
```

It's recommended to use `flake` in nix, which is experimental:

``` sh
nix-env -iA nixpkgs.nixUnstable
```

Then add the following to `~/.config/nix/nix.conf`:

``` text
experimental-features = nix-command flakes
```

For faster compilation, use [cachix](https://www.cachix.org/) to download binary dependencies:

``` sh
nix-env -iA cachix -f https://cachix.org/api/v1/install
```

Then, activate the following cache:

``` sh
cachix use ymherklotz
```

Then build the project using:

``` sh
nix build
```