mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Remove fulcrum.
* gnu/packages/finance.scm (fulcrum): Delete variable. Change-Id: I0e1b7d6dfdbe84a2e9f7d79835abc246667259b5
This commit is contained in:
parent
7699387526
commit
8b195b5f85
1 changed files with 0 additions and 69 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue