Loading pkgs/applications/blockchains/bitcoin/default.nix +3 −0 Original line number Diff line number Diff line Loading @@ -13,6 +13,7 @@ , miniupnpc , zeromq , zlib , db48 , sqlite , qrencode , qtbase ? null Loading Loading @@ -51,6 +52,8 @@ stdenv.mkDerivation rec { buildInputs = [ boost libevent miniupnpc zeromq zlib ] ++ 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 ]; postInstall = '' Loading Loading
pkgs/applications/blockchains/bitcoin/default.nix +3 −0 Original line number Diff line number Diff line Loading @@ -13,6 +13,7 @@ , miniupnpc , zeromq , zlib , db48 , sqlite , qrencode , qtbase ? null Loading Loading @@ -51,6 +52,8 @@ stdenv.mkDerivation rec { buildInputs = [ boost libevent miniupnpc zeromq zlib ] ++ 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 ]; postInstall = '' Loading