me
/
guix
Archived
1
0
Fork 0

gnu: electrum: Fix share/ location.

* gnu/packages/finance.scm (electrum)[arguments]: Rename the ‘patch-home’
phase to ‘fix-prefix’.  Do so.
master
Tobias Geerinckx-Rice 2020-08-24 04:21:42 +02:00
parent 44da87334d
commit a2765029c2
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 9 additions and 5 deletions

View File

@ -458,12 +458,16 @@ do so.")
`(#:tests? #f ; no tests
#:phases
(modify-phases %standard-phases
(add-before 'build 'patch-home
(add-after 'unpack 'fix-prefix
(lambda* (#:key outputs #:allow-other-keys)
(substitute* "setup.py"
(("~/.local/share")
(string-append (assoc-ref outputs "out") "/local/share")))
#t)))))
(let ((out (assoc-ref outputs "out")))
;; setup.py installs to ~/.local/share if sys.prefix/share isn't
;; writable. sys.prefix points to Python's, not our, --prefix.
(mkdir-p (string-append out "/share"))
(substitute* "setup.py"
(("sys\\.prefix")
(format #f "\"~a\"" out)))
#t))))))
(home-page "https://electrum.org/")
(synopsis "Bitcoin wallet")
(description