me
/
guix
Archived
1
0
Fork 0

gnu: python-pyqt: Fix output directory for plugins.

This defaults to QT_INSTALL_PLUGINS, thus we should use the same
sub-directory ($out/lib/qt5/plugins) here.

* gnu/packages/qt.scm (python-pyqt)[arguments]<phases>{configure}:
  Change base file name for plugins.
master
Hartmut Goebel 2019-11-22 09:56:20 +01:00
parent d1e4e64cd7
commit 4ae8180ca6
No known key found for this signature in database
GPG Key ID: 634A8DFFD3F631DF
1 changed files with 1 additions and 1 deletions

View File

@ -1615,7 +1615,7 @@ module provides support functions to the automatically generated code.")
(let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin"))
(sip (string-append out "/share/sip"))
(plugins (string-append out "/plugins"))
(plugins (string-append out "/lib/qt5/plugins"))
(designer (string-append plugins "/designer"))
(qml (string-append plugins "/PyQt5"))
(python (assoc-ref inputs "python"))