diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2023-04-12 10:21:35 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2023-04-12 10:43:25 +0200 |
commit | a023561ccc95ddc04155b64085c4f77fe5e4f82c (patch) | |
tree | 6ff85b404bf42168f4a049b7de1f196c61dd1263 /gnu/packages/finance.scm | |
parent | f671a3ec5c5f52c69f7b331e216e2b71d3bc3a80 (diff) | |
download | guix-a023561ccc95ddc04155b64085c4f77fe5e4f82c.tar.gz |
gnu: electron-cash: Update to 4.2.14.
* gnu/packages/finance.scm (electron-cash): Update to 4.2.14. [arguments]: Remove 'relax-requirements' phase.
Diffstat (limited to 'gnu/packages/finance.scm')
-rw-r--r-- | gnu/packages/finance.scm | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index d44695d978..7d7ffcf17e 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -621,7 +621,7 @@ other machines/servers. Electrum does not download the Bitcoin blockchain.") (define-public electron-cash (package (name "electron-cash") - (version "4.2.12") + (version "4.2.14") (source (origin (method git-fetch) @@ -630,7 +630,7 @@ other machines/servers. Electrum does not download the Bitcoin blockchain.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1bfnfpdyi3q5zq0zj07dq82aj3cihnr7j82gy4ch97182lsl6nms")))) + (base32 "086rqqxxh1dmw1qiwmry6sraai3xg44sb85wdw8zkj30si9780kk")))) (build-system python-build-system) (arguments (list @@ -651,11 +651,6 @@ other machines/servers. Electrum does not download the Bitcoin blockchain.") (substitute* "electroncash/secp256k1.py" (("libsecp256k1.so.0") (search-input-file inputs "lib/libsecp256k1.so.0"))))) - (add-after 'unpack 'relax-requirements - (lambda _ - (substitute* "contrib/requirements/requirements.txt" - (("qdarkstyle==2\\.6\\.8") - "qdarkstyle")))) (add-after 'install 'wrap-qt (lambda* (#:key outputs inputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) |