diff options
author | Vagrant Cascadian <vagrant@debian.org> | 2019-10-08 12:41:44 -0700 |
---|---|---|
committer | Vagrant Cascadian <vagrant@debian.org> | 2019-10-08 12:41:44 -0700 |
commit | 1ea8b3b1a08488759c71381970ca677761a1e870 (patch) | |
tree | 83507dc9d8b57f8d737153907ac2cffd645e1775 /gnu/packages/finance.scm | |
parent | 2ea095300a2e25a02b964711fa8a4b3a07f09843 (diff) | |
download | patches-1ea8b3b1a08488759c71381970ca677761a1e870.tar patches-1ea8b3b1a08488759c71381970ca677761a1e870.tar.gz |
gnu: electron-cash: Update to 4.0.10.
* gnu/packages/finance (electron-cash): Update to 4.0.10.
[inputs]: Add python-dateutil and python-dnspython.
Diffstat (limited to 'gnu/packages/finance.scm')
-rw-r--r-- | gnu/packages/finance.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 960e3adeb3..1230e5c270 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -76,6 +76,7 @@ #:use-module (gnu packages sphinx) #:use-module (gnu packages texinfo) #:use-module (gnu packages textutils) + #:use-module (gnu packages time) #:use-module (gnu packages tls) #:use-module (gnu packages upnp) #:use-module (gnu packages version-control) @@ -413,7 +414,7 @@ other machines/servers. Electrum does not download the Bitcoin blockchain.") (package (inherit electrum) (name "electron-cash") - (version "4.0.7") + (version "4.0.10") (source (origin (method url-fetch) @@ -424,13 +425,17 @@ other machines/servers. Electrum does not download the Bitcoin blockchain.") ".tar.gz")) (sha256 (base32 - "0xswmr68cm1c77lzisi3z812jzqczm9dfrshfhdq42zz5kaz4gnn")) + "1rcywlma6hk52ymisx536jvkdwa73rhn1jxhsbs4wbvajl90w9s8")) (modules '((guix build utils))) (snippet '(begin ;; Delete the bundled dependencies. (delete-file-recursively "packages") #t)))) + (inputs + `(,@(package-inputs electrum) + ("python-dateutil", python-dateutil) + ("python-dnspython", python-dnspython))) (home-page "https://electroncash.org/") (synopsis "Bitcoin Cash wallet") (description |