diff options
| author | Andreas Enge <andreas@enge.fr> | 2025-09-05 18:26:10 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-09-05 18:26:10 +0200 |
| commit | 8b195b5f85e679bfa1469aaa984c931f893720ff (patch) | |
| tree | 33de54633cef73ebcd26cebd10559cb341582d36 /gnu | |
| parent | 7699387526d22e7c9a17ea2411fb8a4f8bc2884b (diff) | |
gnu: Remove fulcrum.
* gnu/packages/finance.scm (fulcrum): Delete variable.
Change-Id: I0e1b7d6dfdbe84a2e9f7d79835abc246667259b5
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/finance.scm | 69 |
1 files changed, 0 insertions, 69 deletions
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") |
