diff options
author | Michael Ford <fanquake@gmail.com> | 2023-05-12 17:05:55 +0100 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2023-05-14 10:38:54 +0200 |
commit | 3c8d0f9e71bbddfb5b1f098c713ff37553f0efcc (patch) | |
tree | a815db79e336fbcc7bdfcad97409975f3fa9c61e /gnu/packages/finance.scm | |
parent | 930e6e3e7a1c5f83aedb49f6fa0ebb0e0bdeeef3 (diff) | |
download | guix-3c8d0f9e71bbddfb5b1f098c713ff37553f0efcc.tar.gz |
gnu: bitcoin-core: Update to 23.1.
* gnu/packages/finance.scp (bitcoin-core): Update to 23.1. [inputs]: Add sqlite. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Diffstat (limited to 'gnu/packages/finance.scm')
-rw-r--r-- | gnu/packages/finance.scm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 649aa56fc1..57d3f37c7c 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -123,6 +123,7 @@ #:use-module (gnu packages readline) #:use-module (gnu packages security-token) #:use-module (gnu packages sphinx) + #:use-module (gnu packages sqlite) #:use-module (gnu packages tex) #:use-module (gnu packages texinfo) #:use-module (gnu packages textutils) @@ -133,10 +134,10 @@ #:use-module (gnu packages xml) #:use-module (gnu packages gnuzilla)) -(define-public bitcoin-core-23.0 +(define-public bitcoin-core-23.1 (package (name "bitcoin-core") - (version "23.0") + (version "23.1") (source (origin (method url-fetch) (uri @@ -144,7 +145,7 @@ version "/bitcoin-" version ".tar.gz")) (sha256 (base32 - "01fcb90pqip3v77kljykx51cmg7jdg2cmp7ys0a40svdkps8nx16")))) + "03k56vgk0a0wr84gpj256hvijk6iyshl85hcrx800hiznyzl5hkl")))) (build-system gnu-build-system) (native-inputs (list autoconf @@ -160,7 +161,8 @@ libevent miniupnpc openssl - qtbase-5)) + qtbase-5 + sqlite)) (arguments `(#:configure-flags (list @@ -214,7 +216,7 @@ line client and a client based on Qt.") ;; The support lifetimes for bitcoin-core versions can be found in ;; <https://bitcoincore.org/en/lifecycle/#schedule>. -(define-public bitcoin-core bitcoin-core-23.0) +(define-public bitcoin-core bitcoin-core-23.1) (define-public ghc-hledger (package |