bitcoin: reenable bdb legacy wallet support on non-Darwin platforms
Joinmarket requires legacy wallet support:
79e5c3d0a7/docs/USAGE.md
#:~:text=legacy%20wallets
Also, this removes breakage for other legacy wallet users on non-Darwin platforms.
This commit is contained in:
parent
e768d95f41
commit
fd7f2d32bc
1 changed files with 3 additions and 0 deletions
|
@ -13,6 +13,7 @@
|
||||||
, miniupnpc
|
, miniupnpc
|
||||||
, zeromq
|
, zeromq
|
||||||
, zlib
|
, zlib
|
||||||
|
, db48
|
||||||
, sqlite
|
, sqlite
|
||||||
, qrencode
|
, qrencode
|
||||||
, qtbase ? null
|
, qtbase ? null
|
||||||
|
@ -51,6 +52,8 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [ boost libevent miniupnpc zeromq zlib ]
|
buildInputs = [ boost libevent miniupnpc zeromq zlib ]
|
||||||
++ lib.optionals withWallet [ sqlite ]
|
++ lib.optionals withWallet [ sqlite ]
|
||||||
|
# building with db48 (for legacy descriptor wallet support) is broken on Darwin
|
||||||
|
++ lib.optionals (withWallet && !stdenv.isDarwin) [ db48 ]
|
||||||
++ lib.optionals withGui [ qrencode qtbase qttools ];
|
++ lib.optionals withGui [ qrencode qtbase qttools ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
|
Loading…
Reference in a new issue