diff options
| author | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-03-22 14:21:43 +0100 |
|---|---|---|
| committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-03-22 21:33:14 +0100 |
| commit | 6f15b1d28614595c5588e50b96e41c0caed217ee (patch) | |
| tree | b186226f4b252ebc36fb2570691c2fcec6f0478c /gnu/packages/pdf.scm | |
| parent | 70afd6b38535459a5fba32dd3aa7449b54480d4c (diff) | |
gnu: flyer-composer: Support Wayland.
* gnu/packages/pdf.scm (flyer-composer)[arguments]<#:phases>{wrap-gui}: Add
qtwayland-5.
[inputs]: Add qtwayland-5.
Change-Id: Iebf131f9f0540f48908f8738249438364404e328
Diffstat (limited to 'gnu/packages/pdf.scm')
| -rw-r--r-- | gnu/packages/pdf.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index 4fa9b626dab..13235659fdb 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm @@ -341,15 +341,17 @@ information.") (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (qtbase (assoc-ref inputs "qtbase")) + (qtwayland (assoc-ref inputs "qtwayland")) (qml "/lib/qt5/qml")) (wrap-program (string-append out "/bin/flyer-composer-gui") `("QT_PLUGIN_PATH" ":" = - (,(string-append qtbase "/lib/qt5/plugins"))) + (,(string-append qtbase "/lib/qt5/plugins") + ,(string-append qtwayland "/lib/qt5/plugins"))) `("QT_QPA_PLATFORM_PLUGIN_PATH" ":" = (,(string-append qtbase "/lib/qt5/plugins/platforms")))))))))) (native-inputs (list python-setuptools python-wheel)) (propagated-inputs (list python-pypdf)) - (inputs (list bash-minimal python-poppler-qt5 python-pyqt qtbase-5)) + (inputs (list bash-minimal python-poppler-qt5 python-pyqt qtbase-5 qtwayland-5)) (home-page "http://crazy-compilers.com/flyer-composer") (synopsis "Rearrange PDF pages to print as flyers on one sheet") (description "@command{flyer-composer} can be used to prepare one- or |
