mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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.
This commit is contained in:
parent
d1e4e64cd7
commit
4ae8180ca6
1 changed files with 1 additions and 1 deletions
|
@ -1615,7 +1615,7 @@ (define-public python-pyqt
|
|||
(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"))
|
||||
|
|
Loading…
Reference in a new issue