2020-09-10 16:39:11 +02:00
|
|
|
# Nix support for financier
|
|
|
|
|
|
2020-09-10 16:45:24 +02:00
|
|
|
This repository contains files for building
|
|
|
|
|
[financier](https://gitlab.com/mpuppe/financier/) with the
|
|
|
|
|
[Nix](https://nixos.org/manual/nix/stable/) package manager.
|
2020-09-10 16:39:11 +02:00
|
|
|
|
2021-09-20 00:11:34 +02:00
|
|
|
First, you should update the necessary Nix files:
|
2020-09-10 16:39:11 +02:00
|
|
|
|
|
|
|
|
``` bash
|
2020-09-17 13:01:24 +02:00
|
|
|
nix-shell --run 'bash generate.sh'
|
2020-09-10 16:39:11 +02:00
|
|
|
```
|
|
|
|
|
|
2020-09-10 16:45:24 +02:00
|
|
|
Afterwards, the distribution for financier can be built:
|
2020-09-10 16:39:11 +02:00
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
|
nix-build dist.nix
|
2020-09-17 13:01:24 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
There is also a module (module.nix) that you can use in your NixOS
|
2021-09-20 00:11:34 +02:00
|
|
|
configuration.
|