me
/
guix
Archived
1
0
Fork 0

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.
master
Ludovic Courtès 2019-12-02 11:14:09 +01:00
parent 66977719a6
commit abad22dd4a
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 6 additions and 1 deletions

View File

@ -643,7 +643,12 @@ else [])"))
(variable "PYTHONPATH") (variable "PYTHONPATH")
(files (list (string-append (files (list (string-append
"lib/python" "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")))))) "/site-packages"))))))
(native-inputs (native-inputs
`(("intltool" ,intltool) `(("intltool" ,intltool)