guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/12: gnu: electrum: Return #t from phases.


From: guix-commits
Subject: 03/12: gnu: electrum: Return #t from phases.
Date: Sun, 23 Aug 2020 22:55:11 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 8ee3e4d9e9cd991ece0cb591ff10c223aa154866
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Mon Aug 24 03:18:08 2020 +0200

    gnu: electrum: Return #t from phases.
    
    * gnu/packages/finance.scm (electrum)[arguments]: Return truth from
    ‘patch-home’.
---
 gnu/packages/finance.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index 881b38d..3f58999 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -455,14 +455,15 @@ do so.")
        ("python-dnspython" ,python-dnspython)
        ("python-jsonrpclib-pelix" ,python-jsonrpclib-pelix)))
     (arguments
-     `(#:tests? #f ;; package doesn't have any tests
+     `(#:tests? #f                      ; no 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"))))))))
+                (string-append (assoc-ref outputs "out") "/local/share")))
+             #t)))))
     (home-page "https://electrum.org/";)
     (synopsis "Bitcoin wallet")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]