diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2025-02-02 12:34:55 +0800 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:37 +0200 |
commit | f1019e46dff4abb997e6424db2a75d6f9d00216b (patch) | |
tree | a8b3708444187d097ab0e6d7c08fde903c8f57c3 | |
parent | b2a810503919f74ea0fcc4b1f1793cbf06c8eab7 (diff) |
gnu: akregator: Do not wrap with QTWEBENGINEPROCESS_PATH.
* gnu/packages/kde.scm (akregator) [arguments]: Remove wrap-qt-process-path
phase.
Change-Id: I827e8375186492064c934c35196790af6e999e0d
Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail>
-rw-r--r-- | gnu/packages/kde.scm | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index 2c2d9e471a..0ff6e9bee5 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -243,18 +243,7 @@ translation engines.") (base32 "0gimz1k5yzkmpn4mq1dfvx3x5n6y7jmm74npy2mn3mdmi9lrg6hh")))) (build-system qt-build-system) (arguments - (list #:qtbase qtbase - #:phases - #~(modify-phases %standard-phases - (add-after 'install 'wrap-qt-process-path - (lambda* (#:key inputs outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (bin (string-append out "/bin/akregator")) - (qt-process-path - (search-input-file - inputs "/lib/qt6/libexec/QtWebEngineProcess"))) - (wrap-program bin - `("QTWEBENGINEPROCESS_PATH" = (,qt-process-path))))))))) + (list #:qtbase qtbase)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs |