Add native build tools for node-gyp compilation
Some checks failed
nix-bitcoin tests / build_test_drivers (push) Has been cancelled
nix-bitcoin tests / check_flake (push) Has been cancelled
nix-bitcoin tests / test_scenario (default) (push) Has been cancelled
nix-bitcoin tests / test_scenario (joinmarket-bitcoind-29) (push) Has been cancelled
nix-bitcoin tests / test_scenario (netns) (push) Has been cancelled
nix-bitcoin tests / test_scenario (netnsRegtest) (push) Has been cancelled

This commit is contained in:
Patrick Mulligan 2026-01-09 22:23:39 +01:00
parent 6567382bd5
commit 7af11b2349

View file

@ -295,7 +295,18 @@ in
after = [ "network-online.target" ];
wants = [ "network-online.target" ];
path = with pkgs; [ nodejs_22 nodePackages.pnpm python3 git coreutils gnused ];
path = with pkgs; [
nodejs_22
nodePackages.pnpm
python3
git
coreutils
gnused
# Native build tools for node-gyp (required for utf-8-validate, bufferutil, etc.)
gcc
gnumake
pkg-config
];
serviceConfig = {
Type = "oneshot";