Loading pkgs/applications/blockchains/bitcoin/default.nix +6 −0 Original line number Diff line number Diff line Loading @@ -14,6 +14,7 @@ db48, sqlite, qrencode, libsystemtap, qtbase ? null, qttools ? null, python3, Loading Loading @@ -60,6 +61,7 @@ stdenv.mkDerivation (finalAttrs: { zeromq zlib ] ++ lib.optionals (stdenv.hostPlatform.isLinux) [ libsystemtap ] ++ lib.optionals withWallet [ sqlite ] # building with db48 (for legacy descriptor wallet support) is broken on Darwin ++ lib.optionals (withWallet && !stdenv.hostPlatform.isDarwin) [ db48 ] Loading Loading @@ -93,6 +95,10 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = [ (lib.cmakeBool "BUILD_BENCH" false) (lib.cmakeBool "WITH_ZMQ" true) # building with db48 (for legacy wallet support) is broken on Darwin (lib.cmakeBool "WITH_BDB" (withWallet && !stdenv.hostPlatform.isDarwin)) (lib.cmakeBool "WITH_USDT" (stdenv.hostPlatform.isLinux)) ] ++ lib.optionals (!finalAttrs.doCheck) [ (lib.cmakeBool "BUILD_TESTS" false) Loading Loading
pkgs/applications/blockchains/bitcoin/default.nix +6 −0 Original line number Diff line number Diff line Loading @@ -14,6 +14,7 @@ db48, sqlite, qrencode, libsystemtap, qtbase ? null, qttools ? null, python3, Loading Loading @@ -60,6 +61,7 @@ stdenv.mkDerivation (finalAttrs: { zeromq zlib ] ++ lib.optionals (stdenv.hostPlatform.isLinux) [ libsystemtap ] ++ lib.optionals withWallet [ sqlite ] # building with db48 (for legacy descriptor wallet support) is broken on Darwin ++ lib.optionals (withWallet && !stdenv.hostPlatform.isDarwin) [ db48 ] Loading Loading @@ -93,6 +95,10 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = [ (lib.cmakeBool "BUILD_BENCH" false) (lib.cmakeBool "WITH_ZMQ" true) # building with db48 (for legacy wallet support) is broken on Darwin (lib.cmakeBool "WITH_BDB" (withWallet && !stdenv.hostPlatform.isDarwin)) (lib.cmakeBool "WITH_USDT" (stdenv.hostPlatform.isLinux)) ] ++ lib.optionals (!finalAttrs.doCheck) [ (lib.cmakeBool "BUILD_TESTS" false) Loading