diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2025-02-02 12:34:58 +0800 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:37 +0200 |
commit | c41d2f5a4b4e9a4d7c70fcfe40a4cba229764015 (patch) | |
tree | a8884462ed9855c92e00aca3677d94e36f0d79b7 /gnu/packages/web.scm | |
parent | d7ecd83d581fed28e989d8b6a68dd1cca35a3e7a (diff) |
gnu: kiwix-desktop: Do not wrap with QTWEBENGINEPROCESS_PATH.
* gnu/packages/web.scm (kiwix-desktop) [arguments]: Remove
wrap-qt-process-path phase.
Change-Id: Iaf33c180268358a3b1bf1695b37313f20b410f9d
Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail>
Diffstat (limited to 'gnu/packages/web.scm')
-rw-r--r-- | gnu/packages/web.scm | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 9d46210083..5f5fc58698 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -9628,15 +9628,7 @@ It contains the code shared by all Kiwix ports.") (lambda* (#:key outputs #:allow-other-keys) (invoke "qmake" (string-append "PREFIX=" - (assoc-ref outputs "out"))))) - (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/kiwix-desktop")) - (qt-process-path (search-input-file - inputs "/lib/qt5/libexec/QtWebEngineProcess"))) - (wrap-program bin - `("QTWEBENGINEPROCESS_PATH" = (,qt-process-path))))))))) + (assoc-ref outputs "out")))))))) (inputs (list bash-minimal curl |