mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: bitcoin-abc: Update to 0.20.4.
* gnu/packages/finance.scm (bitcoin-abc): Update to 0.20.4. [source]: Fix uri. [inputs]: Use bdb-5.3 (bdb-4.8 is not supported). [arguments]: Add 'fix-tests' phase. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
parent
c9b9ef0a19
commit
28d46d9d43
1 changed files with 23 additions and 3 deletions
|
@ -1133,15 +1133,35 @@ (define-public bitcoin-abc
|
||||||
(package
|
(package
|
||||||
(inherit bitcoin-core)
|
(inherit bitcoin-core)
|
||||||
(name "bitcoin-abc")
|
(name "bitcoin-abc")
|
||||||
(version "0.19.8")
|
(version "0.20.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://download.bitcoinabc.org/"
|
(uri (string-append "https://download.bitcoinabc.org/"
|
||||||
version "/linux/src/bitcoin-abc-"
|
version "/src/bitcoin-abc-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0ndvkxv5m8346bdhfqzgdiz1k9wyjycj05jp7daf9pml3cw79sz5"))))
|
"0fld54z3l7z7k5n35rrjichjnx37j9xp0rv8i69m3x4qfj1xk2np"))))
|
||||||
|
(inputs
|
||||||
|
`(("bdb" ,bdb-5.3)
|
||||||
|
("boost" ,boost)
|
||||||
|
("libevent" ,libevent)
|
||||||
|
("miniupnpc" ,miniupnpc)
|
||||||
|
("openssl" ,openssl)
|
||||||
|
("protobuf" ,protobuf)
|
||||||
|
("qtbase" ,qtbase)))
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments bitcoin-core)
|
||||||
|
((#:phases phases)
|
||||||
|
`(modify-phases ,phases
|
||||||
|
(add-after 'unpack 'fix-tests
|
||||||
|
;; Disable 'check-devtools' test which tries to run a
|
||||||
|
;; python script that doesn't exist.
|
||||||
|
(lambda _
|
||||||
|
(substitute* "Makefile.in"
|
||||||
|
(("^check-local: check-devtools")
|
||||||
|
"check-local:"))
|
||||||
|
#t))))))
|
||||||
(home-page "https://www.bitcoinabc.org/")
|
(home-page "https://www.bitcoinabc.org/")
|
||||||
(synopsis "Bitcoin ABC peer-to-peer full node for the Bitcoin Cash protocol")
|
(synopsis "Bitcoin ABC peer-to-peer full node for the Bitcoin Cash protocol")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue