* [bug#32130] [PATCH] gnu: Add electron-cash.
@ 2018-07-12 5:05 Vagrant Cascadian
2018-07-12 22:03 ` Ludovic Courtès
0 siblings, 1 reply; 4+ messages in thread
From: Vagrant Cascadian @ 2018-07-12 5:05 UTC (permalink / raw)
To: 32130
[-- Attachment #1: Type: text/plain, Size: 2645 bytes --]
* gnu/packages/finance.scm (electron-cash): New variable.
---
gnu/packages/finance.scm | 52 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index 1d3e6a7a6..594c835d3 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -279,6 +279,58 @@ It's not clear at the moment whether one day it will be possible to
do so.")
(license license:agpl3+)))
+(define-public electron-cash
+ (package
+ (name "electron-cash")
+ (version "3.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://electroncash.org/downloads/"
+ version
+ "/win-linux/ElectronCash-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1x487hyacdm1qhik1mhfimr4jwcwz7sgsbkh11awrb6j19sxdxym"))
+ (modules '((guix build utils)))
+ (snippet
+ '(begin
+ ;; Delete the bundled dependencies.
+ (delete-file-recursively "packages")
+ #t))))
+ (build-system python-build-system)
+ (inputs
+ `(("python-pyaes" ,python-pyaes)
+ ("python-pysocks" ,python-pysocks)
+ ("python-sip" ,python-sip)
+ ("python-pyqt" ,python-pyqt)
+ ("python-ecdsa" ,python-ecdsa)
+ ("python-pbkdf2" ,python-pbkdf2)
+ ("python-requests" ,python-requests)
+ ("python-qrcode" ,python-qrcode)
+ ("python-protobuf" ,python-protobuf)
+ ("python-dnspython" ,python-dnspython)
+ ("python-jsonrpclib-pelix" ,python-jsonrpclib-pelix)))
+ (arguments
+ `(#:tests? #f ;; package doesn't have any tests
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'build 'patch-home
+ (lambda* (#:key outputs #:allow-other-keys)
+ (substitute* "setup.py"
+ (("~/.local/share")
+ (string-append (assoc-ref outputs "out") "/local/share"))))))))
+ (home-page "https://electroncash.org/")
+ (synopsis "Bitcoin Cash wallet")
+ (description
+ "Electroncash is a lightweight Bitcoin Cash client, based on a client-server
+protocol. It supports Simple Payment Verification (SPV) and deterministic key
+generation from a seed. Your secret keys are encrypted and are never sent to
+other machines/servers. Electroncash does not download the Bitcoin Cash blockchain.")
+ (license license:expat)))
+
(define-public electrum
(package
(name "electrum")
--
2.18.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#32130] [PATCH] gnu: Add electron-cash.
2018-07-12 5:05 [bug#32130] [PATCH] gnu: Add electron-cash Vagrant Cascadian
@ 2018-07-12 22:03 ` Ludovic Courtès
2018-07-12 22:40 ` Vagrant Cascadian
[not found] ` <87tvp2hhjn.fsf@aikidev.net>
0 siblings, 2 replies; 4+ messages in thread
From: Ludovic Courtès @ 2018-07-12 22:03 UTC (permalink / raw)
To: Vagrant Cascadian; +Cc: 32130
Hello,
Vagrant Cascadian <vagrant@debian.org> skribis:
> * gnu/packages/finance.scm (electron-cash): New variable.
[...]
> + (build-system python-build-system)
> + (inputs
> + `(("python-pyaes" ,python-pyaes)
> + ("python-pysocks" ,python-pysocks)
> + ("python-sip" ,python-sip)
> + ("python-pyqt" ,python-pyqt)
> + ("python-ecdsa" ,python-ecdsa)
> + ("python-pbkdf2" ,python-pbkdf2)
> + ("python-requests" ,python-requests)
> + ("python-qrcode" ,python-qrcode)
> + ("python-protobuf" ,python-protobuf)
> + ("python-dnspython" ,python-dnspython)
> + ("python-jsonrpclib-pelix" ,python-jsonrpclib-pelix)))
> + (arguments
> + `(#:tests? #f ;; package doesn't have any tests
> + #:phases
> + (modify-phases %standard-phases
> + (add-before 'build 'patch-home
> + (lambda* (#:key outputs #:allow-other-keys)
> + (substitute* "setup.py"
> + (("~/.local/share")
> + (string-append (assoc-ref outputs "out") "/local/share"))))))))
> + (home-page "https://electroncash.org/")
This seems to be pretty much the same thing as ‘electrum’. Should we
define it as:
(package
(inherit electrum)
(name "electron-cash")
…)
?
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#32130] [PATCH] gnu: Add electron-cash.
2018-07-12 22:03 ` Ludovic Courtès
@ 2018-07-12 22:40 ` Vagrant Cascadian
[not found] ` <87tvp2hhjn.fsf@aikidev.net>
1 sibling, 0 replies; 4+ messages in thread
From: Vagrant Cascadian @ 2018-07-12 22:40 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 32130
[-- Attachment #1: Type: text/plain, Size: 1588 bytes --]
On 2018-07-12, Ludovic Courtès wrote:
> Vagrant Cascadian <vagrant@debian.org> skribis:
>
>> * gnu/packages/finance.scm (electron-cash): New variable.
>
> [...]
>
>> + (build-system python-build-system)
>> + (inputs
>> + `(("python-pyaes" ,python-pyaes)
>> + ("python-pysocks" ,python-pysocks)
>> + ("python-sip" ,python-sip)
>> + ("python-pyqt" ,python-pyqt)
>> + ("python-ecdsa" ,python-ecdsa)
>> + ("python-pbkdf2" ,python-pbkdf2)
>> + ("python-requests" ,python-requests)
>> + ("python-qrcode" ,python-qrcode)
>> + ("python-protobuf" ,python-protobuf)
>> + ("python-dnspython" ,python-dnspython)
>> + ("python-jsonrpclib-pelix" ,python-jsonrpclib-pelix)))
>> + (arguments
>> + `(#:tests? #f ;; package doesn't have any tests
>> + #:phases
>> + (modify-phases %standard-phases
>> + (add-before 'build 'patch-home
>> + (lambda* (#:key outputs #:allow-other-keys)
>> + (substitute* "setup.py"
>> + (("~/.local/share")
>> + (string-append (assoc-ref outputs "out") "/local/share"))))))))
>> + (home-page "https://electroncash.org/")
>
> This seems to be pretty much the same thing as ‘electrum’. Should we
> define it as:
>
> (package
> (inherit electrum)
> (name "electron-cash")
> …)
Yes, it is a fork of electrum. The release cycles are independent and
possibly the needed inputs may differ over time. But for now that will
probably work fine.
live well,
vagrant
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <87tvp2hhjn.fsf@aikidev.net>]
* bug#32130: [PATCH] gnu: Add electron-cash.
[not found] ` <87tvp2hhjn.fsf@aikidev.net>
@ 2018-07-16 13:36 ` Ludovic Courtès
0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2018-07-16 13:36 UTC (permalink / raw)
To: Vagrant Cascadian; +Cc: 32130-done
Vagrant Cascadian <vagrant@debian.org> skribis:
> From 9e655d9cb2898b3ccdf2350b49ab75e6e542c297 Mon Sep 17 00:00:00 2001
> From: Vagrant Cascadian <vagrant@debian.org>
> Date: Fri, 13 Jul 2018 22:39:16 +0000
> Subject: [PATCH] gnu: Add electron-cash.
>
> * gnu/packages/finance.scm (electron-cash): New variable.
Applied, thanks!
Ludo'.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-07-16 13:37 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-12 5:05 [bug#32130] [PATCH] gnu: Add electron-cash Vagrant Cascadian
2018-07-12 22:03 ` Ludovic Courtès
2018-07-12 22:40 ` Vagrant Cascadian
[not found] ` <87tvp2hhjn.fsf@aikidev.net>
2018-07-16 13:36 ` bug#32130: " Ludovic Courtès
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).