me
/
guix
Archived
1
0
Fork 0

gnu: electrum: Return #t from phases.

* gnu/packages/finance.scm (electrum)[arguments]: Return truth from
‘patch-home’.
master
Tobias Geerinckx-Rice 2020-08-24 03:18:08 +02:00
parent 598afe95c3
commit 8ee3e4d9e9
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 3 additions and 2 deletions

View File

@ -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