mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: bitcoin-abc: Update to 0.20.7.
* gnu/packages/finance.scm (bitcoin-abc): Update to 0.20.7. [native-inputs]: Add autoconf, automake and libtool. [inputs]: Add qrencode and zlib. [arguments]: Remove fix-tests phase. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
bf770d9240
commit
054ff198e4
1 changed files with 15 additions and 15 deletions
|
@ -43,6 +43,8 @@ (define-module (gnu packages finance)
|
||||||
#:use-module (guix build-system go)
|
#:use-module (guix build-system go)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
|
#:use-module (gnu packages aidc)
|
||||||
|
#:use-module (gnu packages autotools)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages boost)
|
#:use-module (gnu packages boost)
|
||||||
#:use-module (gnu packages check)
|
#:use-module (gnu packages check)
|
||||||
|
@ -1172,7 +1174,7 @@ (define-public bitcoin-abc
|
||||||
(package
|
(package
|
||||||
(inherit bitcoin-core)
|
(inherit bitcoin-core)
|
||||||
(name "bitcoin-abc")
|
(name "bitcoin-abc")
|
||||||
(version "0.20.4")
|
(version "0.20.7")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://download.bitcoinabc.org/"
|
(uri (string-append "https://download.bitcoinabc.org/"
|
||||||
|
@ -1180,7 +1182,15 @@ (define-public bitcoin-abc
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0fld54z3l7z7k5n35rrjichjnx37j9xp0rv8i69m3x4qfj1xk2np"))))
|
"0py5ilfi4r8qh5r9637vwch27sqrrn0dg9rz8bccnj3lp2xpzw27"))))
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("libtool" ,libtool)
|
||||||
|
("pkg-config" ,pkg-config)
|
||||||
|
("python" ,python) ; for the tests
|
||||||
|
("util-linux" ,util-linux) ; provides the hexdump command for tests
|
||||||
|
("qttools" ,qttools)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("bdb" ,bdb-5.3)
|
`(("bdb" ,bdb-5.3)
|
||||||
("boost" ,boost)
|
("boost" ,boost)
|
||||||
|
@ -1188,19 +1198,9 @@ (define-public bitcoin-abc
|
||||||
("miniupnpc" ,miniupnpc)
|
("miniupnpc" ,miniupnpc)
|
||||||
("openssl" ,openssl)
|
("openssl" ,openssl)
|
||||||
("protobuf" ,protobuf)
|
("protobuf" ,protobuf)
|
||||||
("qtbase" ,qtbase)))
|
("qrencode" ,qrencode)
|
||||||
(arguments
|
("qtbase" ,qtbase)
|
||||||
(substitute-keyword-arguments (package-arguments bitcoin-core)
|
("zlib" ,zlib)))
|
||||||
((#: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