gnu: akgregator: Fix build.

* gnu/packages/kde.scm (akregator)[arguments]: Use SEARCH-INPUT-FILE to locate
QtWebEngine instead of referring to non-existent label.
This commit is contained in:
Marius Bakke 2022-10-16 15:08:23 +02:00
parent 8681d90d50
commit 3d8c243efb
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -167,9 +167,9 @@ (define-public akregator
(lambda* (#:key inputs outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin/akregator"))
(qt-process-path (string-append
(assoc-ref inputs "qtwebengine-5")
"/lib/qt5/libexec/QtWebEngineProcess")))
(qt-process-path
(search-input-file
inputs "/lib/qt5/libexec/QtWebEngineProcess")))
(wrap-program bin
`("QTWEBENGINEPROCESS_PATH" = (,qt-process-path)))))))))
(native-inputs