mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: gajim: Avoid top-level reference to 'python'.
This fixes a circular dependency due to this top-level reference to 'python' as discussed in <https://bugs.gnu.org/38326>. * gnu/packages/messaging.scm (gajim)[native-search-paths]: Remove reference to 'python'. Hard-code the Python version instead.
This commit is contained in:
parent
66977719a6
commit
abad22dd4a
1 changed files with 6 additions and 1 deletions
|
@ -643,7 +643,12 @@ (define-public gajim
|
|||
(variable "PYTHONPATH")
|
||||
(files (list (string-append
|
||||
"lib/python"
|
||||
(version-major+minor (package-version python))
|
||||
|
||||
;; FIXME: Cannot use this expression as it would
|
||||
;; introduce a circular dependency at the top level.
|
||||
;; (version-major+minor (package-version python))
|
||||
"3.7"
|
||||
|
||||
"/site-packages"))))))
|
||||
(native-inputs
|
||||
`(("intltool" ,intltool)
|
||||
|
|
Loading…
Reference in a new issue