diff options
author | Marius Bakke <marius@gnu.org> | 2022-10-16 15:08:23 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-10-16 15:14:38 +0200 |
commit | 3d8c243efb615c7e642942433be1c7badf0ae65e (patch) | |
tree | 0c8a99b473783c97fdeaac702f096794a6449de3 /gnu | |
parent | 8681d90d50700483bcdc439830d520bb02462fdf (diff) | |
download | guix-3d8c243efb615c7e642942433be1c7badf0ae65e.tar.gz guix-3d8c243efb615c7e642942433be1c7badf0ae65e.zip |
gnu: akgregator: Fix build.
* gnu/packages/kde.scm (akregator)[arguments]: Use SEARCH-INPUT-FILE to locate
QtWebEngine instead of referring to non-existent label.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/kde.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index 37125b1d0b..420d2a657e 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -167,9 +167,9 @@ This package contains GUI widgets for baloo.") (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 |