mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: bitcoin-unlimited: Update to 2.0.0.0.
* gnu/packages/finance.scm (bitcoin-unlimited): Update to 2.0.0.0. [arguments]: Update 'fix-tests' phase.
This commit is contained in:
parent
bac28a52cb
commit
405a1813d8
1 changed files with 8 additions and 3 deletions
|
@ -1801,7 +1801,7 @@ (define-public libofx
|
|||
(define-public bitcoin-unlimited
|
||||
(package
|
||||
(name "bitcoin-unlimited")
|
||||
(version "1.10.0.0")
|
||||
(version "2.0.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -1810,7 +1810,7 @@ (define-public bitcoin-unlimited
|
|||
(commit (string-append "BCHunlimited" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "12yb2rbd6hsns43qyxc5dm7h5k4sph9sb64q7kkbqi3xhgrrsjdq"))))
|
||||
(base32 "0s4iyjfhjx21xa3z7433m4skfr115565k0ckza87ha2d4nl8kz5h"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
(list autoconf
|
||||
|
@ -1862,7 +1862,12 @@ (define-public bitcoin-unlimited
|
|||
;; an expired SSL certificate.
|
||||
(substitute* "src/qt/test/test_main.cpp"
|
||||
(("if \\(QTest::qExec\\(&test2\\) != 0\\)")
|
||||
"if (QTest::qExec(&test2) == 0)"))))
|
||||
"if (QTest::qExec(&test2) == 0)"))
|
||||
;; The following test passes with OpenSSL 1.1, but fails with
|
||||
;; OpenSSL 3.
|
||||
(substitute* "src/secp256k1/src/tests.c"
|
||||
(("run_ecdsa_der_parse\\(\\);")
|
||||
""))))
|
||||
(add-before 'check 'set-home
|
||||
(lambda _
|
||||
;; Tests write to $HOME
|
||||
|
|
Loading…
Reference in a new issue