diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index b990338d787..c05ecbdcf00 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -1921,75 +1921,6 @@ following three utilities are included with the library: @end enumerate") (license license:gpl2+))) -(define-public fulcrum - (package - (name "fulcrum") - (version "1.9.1") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cculianu/Fulcrum") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (modules '((guix build utils))) - (snippet - #~(for-each delete-file-recursively - '("src/Json/simdjson" - "src/bitcoin/secp256k1" - "src/robin_hood" - "src/zmq" - "staticlibs"))) - (sha256 - (base32 - "1110vanl6aczlq25i4ck9j4vr81in5icw4z383wyhjpcy6rwxsw2")) - (patches - (search-patches "fulcrum-1.9.1-unbundled-libraries.patch")))) - (build-system gnu-build-system) - (arguments - (list #:configure-flags - #~(list "CONFIG+=config_without_bundled_cppzmq" - "CONFIG+=config_without_bundled_robin_hood" - "CONFIG+=config_without_bundled_secp256k1" - "LIBS+=-lrocksdb" - #$@(if (target-64bit?) '("LIBS+=-lsimdjson") '()) - (format #f "DEFINES+=GIT_COMMIT=\"\\\\\\~s\\\\\\\"" - #$version) - (string-append "PREFIX=" #$output)) - #:phases - #~(modify-phases %standard-phases - (replace 'configure - (lambda* (#:key configure-flags #:allow-other-keys) - (apply invoke "qmake" configure-flags)))))) - (native-inputs (list pkg-config qttools-5)) - (inputs - (append (list cppzmq - jemalloc - python - qtbase-5 - robin-hood-hashing - rocksdb - zeromq - zlib) - (if (target-64bit?) - (list simdjson-0.6) - '()))) - (home-page "https://github.com/cculianu/Fulcrum") - (synopsis "Payment verification server for Bitcoin-like crypto-currencies") - (description - "Fulcrum is a @acronym{SPV, Simplified Payment Verification} server for -Bitcoin-like crypto-currencies. The server indexes the blockchain of the -crypto-currency used, and the resulting index can be used by wallets to -perform queries to keep real-time track of balances. - -Supported crypto-currencies: - -@itemize -@item Bitcoin Core. -@item Bitcoin Cash-like. -@item Litecoin. -@end itemize") - (license license:gpl3+))) - (define-public flowee (package (name "flowee")