mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
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:
parent
8681d90d50
commit
3d8c243efb
1 changed files with 3 additions and 3 deletions
|
@ -167,9 +167,9 @@ (define-public akregator
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(bin (string-append out "/bin/akregator"))
|
(bin (string-append out "/bin/akregator"))
|
||||||
(qt-process-path (string-append
|
(qt-process-path
|
||||||
(assoc-ref inputs "qtwebengine-5")
|
(search-input-file
|
||||||
"/lib/qt5/libexec/QtWebEngineProcess")))
|
inputs "/lib/qt5/libexec/QtWebEngineProcess")))
|
||||||
(wrap-program bin
|
(wrap-program bin
|
||||||
`("QTWEBENGINEPROCESS_PATH" = (,qt-process-path)))))))))
|
`("QTWEBENGINEPROCESS_PATH" = (,qt-process-path)))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Loading…
Reference in a new issue