From 3d8c243efb615c7e642942433be1c7badf0ae65e Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 16 Oct 2022 15:08:23 +0200 Subject: gnu: akgregator: Fix build. * gnu/packages/kde.scm (akregator)[arguments]: Use SEARCH-INPUT-FILE to locate QtWebEngine instead of referring to non-existent label. --- gnu/packages/kde.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/kde.scm') 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 -- cgit v1.2.3