From a62b9da1e34cea87e90eed37f2c3e3df4ba4b728 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Mon, 13 May 2024 16:59:16 -0400 Subject: [PATCH] fixed auroreconf err --- src/system/modules/bitcoin/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/system/modules/bitcoin/default.nix b/src/system/modules/bitcoin/default.nix index f33b000..d2078e4 100644 --- a/src/system/modules/bitcoin/default.nix +++ b/src/system/modules/bitcoin/default.nix @@ -1,4 +1,4 @@ -{ pkgs, lib, config, ... }: +{ pkgs, lib, config, autoreconfHook, ... }: with lib; let @@ -19,6 +19,7 @@ in url = "https://bitcoincore.org/bin/bitcoin-core-${version}/bitcoin-${version}-x86_64-linux-gnu.tar.gz"; sha256 = "sha256-T45mgVrGXEZIz9mPbVd4feca6qKzOuJqXDaLzFv+JBY="; }; + nativeBuildInputs = [ autoreconfHook ]; }); }) ];