nixos install: tweaks to get CLN building from fresh start

Needed to change a few things to get CLN building on a fresh NixOS
box.

Ideally we'd move this over to a flake.nix for devshell etc.
This commit is contained in:
niftynei
2023-08-13 15:47:57 -05:00
committed by Rusty Russell
parent e0f97cab1b
commit a9ffa370c4

View File

@@ -315,8 +315,10 @@ Use nix-shell launch a shell with a full Core Lightning dev environment:
```shell
$ nix-shell -Q -p gdb sqlite autoconf git clang libtool sqlite autoconf \
autogen automake libsodium 'python3.withPackages (p: [p.bitcoinlib])' \
valgrind --run make
autogen automake gmp zlib gettext libsodium poetry 'python3.withPackages (p: [p.bitcoinlib])' \
valgrind --run "./configure && poetry shell"
$ poetry install
$ make
```
## To Build on macOS