This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch next-master
in repository guix.
The following commit(s) were added to refs/heads/next-master by this push:
new 844042c3fe gnu: bitcoin-core: Update to 30.2.
844042c3fe is described below
commit 844042c3fe990ac6852941b0f1bad27291ca7dcd
Author: Hennadii Stepanov <[email protected]>
AuthorDate: Sat Jan 10 16:35:11 2026 +0000
gnu: bitcoin-core: Update to 30.2.
* gnu/packages/finance.scm (bitcoin-core): Update to 30.2.
[arguments]: Set #:qtbase to qtbase.
[inputs]: Remove qtbase.
Change-Id: Ie23de3bfa77282aaa25922e1e04eefb46dca18ed
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/finance.scm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index be8a01db35..9d8d40e3f9 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -39,7 +39,7 @@
;;; Copyright © 2023 Attila Lendvai <[email protected]>
;;; Copyright © 2024 Saku Laesvuori <[email protected]>
;;; Copyright © 2024 Sharlatan Hellseher <[email protected]>
-;;; Copyright © 2025 Hennadii Stepanov <[email protected]>
+;;; Copyright © 2025-2026 Hennadii Stepanov <[email protected]>
;;; Copyright © 2025 James Smith <[email protected]>
;;;
;;; This file is part of GNU Guix.
@@ -158,7 +158,7 @@
;; <https://bitcoincore.org/en/lifecycle/#schedule>.
(package
(name "bitcoin-core")
- (version "30.0")
+ (version "30.2")
(source (origin
(method url-fetch)
(uri
@@ -166,10 +166,11 @@
version "/bitcoin-" version ".tar.gz"))
(sha256
(base32
- "0x39bqd9ql7b6s7sj8ws8gw6g4nbgf6cplnys2lrmvfza56jliwv"))))
+ "1jw4djh22v0nih0n7irdbknfbqavlc4l3b8176b5qgc88a60pl3g"))))
(build-system qt-build-system)
(arguments
- (list #:configure-flags
+ (list #:qtbase qtbase
+ #:configure-flags
#~(list
"-DBUILD_GUI=ON"
"-DBUILD_BENCH=ON"
@@ -199,7 +200,6 @@
capnproto
libevent
qrencode
- qtbase
sqlite
zeromq))
(home-page "https://bitcoincore.org/")