iyzsong pushed a commit to branch qt-team in repository guix. commit f26173a46115b4da87bad0f4a0d75b14dbf7fb06 Author: 宋文武 <iyzs...@member.fsf.org> AuthorDate: Sun Feb 2 12:34:52 2025 +0800
gnu: anki: Do not wrap with QTWEBENGINEPROCESS_PATH. * gnu/packages/education.scm (anki) [arguments]: Remove QTWEBENGINEPROCESS_PATH from the wrap phase. Change-Id: If8b2cd5bcb0624033b6f7a29c9b865b70943032d Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail> --- gnu/packages/education.scm | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index f42a216972..f0c0e931bf 100644 --- a/gnu/packages/education.scm +++ b/gnu/packages/education.scm @@ -836,18 +836,11 @@ stored and user can review his performance in any time.") (filter (match-lambda ((label . _) (string-prefix? "python-" label))) - inputs))) - (qtwebengineprocess - (search-input-file inputs - "lib/qt5/libexec/QtWebEngineProcess"))) - ;; The program fails to find the QtWebEngineProcess program, so - ;; we set QTWEBENGINEPROCESS_PATH to help it. PYTHONPATH is - ;; wrapped to avoid declaring Python libraries as propagated - ;; inputs. + inputs)))) + ;; PYTHONPATH is wrapped to avoid declaring Python libraries as + ;; propagated inputs. (for-each (lambda (program) (wrap-program program - `("QTWEBENGINEPROCESS_PATH" = - (,qtwebengineprocess)) `("PATH" prefix (,(string-append (assoc-ref inputs "mpv") "/bin")))