From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51469) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fdjgx-0003wG-76 for guix-patches@gnu.org; Thu, 12 Jul 2018 18:04:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fdjgw-0003Dl-2h for guix-patches@gnu.org; Thu, 12 Jul 2018 18:04:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49574) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fdjgv-0003Db-Ux for guix-patches@gnu.org; Thu, 12 Jul 2018 18:04:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fdjgv-0007Y8-M8 for guix-patches@gnu.org; Thu, 12 Jul 2018 18:04:01 -0400 Subject: [bug#32130] [PATCH] gnu: Add electron-cash. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <87d0vtjb7a.fsf@aikidev.net> Date: Fri, 13 Jul 2018 00:03:20 +0200 In-Reply-To: <87d0vtjb7a.fsf@aikidev.net> (Vagrant Cascadian's message of "Wed, 11 Jul 2018 22:05:13 -0700") Message-ID: <87lgagqfh3.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Vagrant Cascadian Cc: 32130@debbugs.gnu.org Hello, Vagrant Cascadian 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 =E2=80=98electrum=E2=80=99. = Should we define it as: (package (inherit electrum) (name "electron-cash") =E2=80=A6) ? Thanks, Ludo=E2=80=99.