mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 09:02:59 -05:00
gnu: hexchat: Fix build.
* gnu/packages/messaging.scm (hexchat)[arguments]: Use GUIX_PYTHONPATH instead of PYTHONPATH in 'wrap-program' phase.
This commit is contained in:
parent
2640da8410
commit
f3496c2b5c
1 changed files with 2 additions and 1 deletions
|
@ -754,7 +754,8 @@ (define-public hexchat
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(bin (string-append out "/bin")))
|
(bin (string-append out "/bin")))
|
||||||
(wrap-program (string-append bin "/hexchat")
|
(wrap-program (string-append bin "/hexchat")
|
||||||
`("PYTHONPATH" ":" prefix (,(getenv "PYTHONPATH"))))))))))
|
`("GUIX_PYTHONPATH" ":" prefix
|
||||||
|
(,(getenv "GUIX_PYTHONPATH"))))))))))
|
||||||
(synopsis "Graphical IRC client")
|
(synopsis "Graphical IRC client")
|
||||||
(description
|
(description
|
||||||
"HexChat lets you connect to multiple IRC networks at once. The main
|
"HexChat lets you connect to multiple IRC networks at once. The main
|
||||||
|
|
Loading…
Reference in a new issue