Building with Nix
Setup Nix (flakes)
Recalc uses Nix for reproducible builds, install it if you haven't:
sh <(curl -L https://nixos.org/nix/install) --daemon
Enable Nix flakes by setting:
nix.settings.experimental-features = [ "nix-command" "flakes" ];
Build
To build, simply clone and build with Nix:
git clone https://github.com/b4er/recalc.git && cd recalc
nix build
There should now be a symlink to the build outputs ./result
.