fixed auroreconf err

This commit is contained in:
Bryan Ramos 2024-05-13 16:59:16 -04:00
parent 20bd0a1fcf
commit a62b9da1e3
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8

View file

@ -1,4 +1,4 @@
{ pkgs, lib, config, ... }: { pkgs, lib, config, autoreconfHook, ... }:
with lib; with lib;
let let
@ -19,6 +19,7 @@ in
url = "https://bitcoincore.org/bin/bitcoin-core-${version}/bitcoin-${version}-x86_64-linux-gnu.tar.gz"; url = "https://bitcoincore.org/bin/bitcoin-core-${version}/bitcoin-${version}-x86_64-linux-gnu.tar.gz";
sha256 = "sha256-T45mgVrGXEZIz9mPbVd4feca6qKzOuJqXDaLzFv+JBY="; sha256 = "sha256-T45mgVrGXEZIz9mPbVd4feca6qKzOuJqXDaLzFv+JBY=";
}; };
nativeBuildInputs = [ autoreconfHook ];
}); });
}) })
]; ];