[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/03: gnu: akgregator: Fix build.
From: |
guix-commits |
Subject: |
03/03: gnu: akgregator: Fix build. |
Date: |
Sun, 16 Oct 2022 09:15:31 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit 3d8c243efb615c7e642942433be1c7badf0ae65e
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Sun Oct 16 15:08:23 2022 +0200
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(-)
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