From adf22d21c9d428f42f90e66c187e25708bbd519e Mon Sep 17 00:00:00 2001 From: Charles Hall Date: Fri, 14 Jul 2023 15:14:55 -0700 Subject: [PATCH] fulcrum: pin older rocksdb --- pkgs/applications/blockchains/fulcrum/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/blockchains/fulcrum/default.nix b/pkgs/applications/blockchains/fulcrum/default.nix index 4676eb5b776..c26efb5d4e6 100644 --- a/pkgs/applications/blockchains/fulcrum/default.nix +++ b/pkgs/applications/blockchains/fulcrum/default.nix @@ -5,7 +5,7 @@ , qmake , python3 , qtbase -, rocksdb +, rocksdb_7_10 , zeromq }: @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; # no GUI - buildInputs = [ python3 qtbase rocksdb zeromq ]; + buildInputs = [ python3 qtbase rocksdb_7_10 zeromq ]; meta = with lib; { description = "Fast & nimble SPV server for Bitcoin Cash & Bitcoin BTC";