diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2025-02-02 12:34:52 +0800 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:37 +0200 |
commit | b4b6af147961c5affcb1af8a9fe9fe3ff21035b3 (patch) | |
tree | e26ba4853288e0498d233537e1a4f02dca31389d | |
parent | a89116cdd3adb26dd4bdb3a6e2e2e80398381135 (diff) |
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>
-rw-r--r-- | gnu/packages/education.scm | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index 592ade4c63..bdbde20f71 100644 --- a/gnu/packages/education.scm +++ b/gnu/packages/education.scm @@ -837,18 +837,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"))) |