lfam pushed a commit to branch master
in repository guix.
commit 54add2e1ba1a5729fbf5b34854a961edfdd17334
Author: Leo Famulari <[email protected]>
AuthorDate: Thu Jan 27 13:07:40 2022 -0500
gnu: qutebrowser: Remove a transitive dependency on QtWebKit.
This browser is explicity a Chromium / QtWebEngine browser, so it shouldn't
also
depend on QtWebKit.
See <https://issues.guix.gnu.org/53289> for more information about this
change.
* gnu/packages/web-browsers.scm (qutebrowser)[inputs]: Replace python-pyqt
with
python-pyqt-without-qtwebkit.
---
gnu/packages/web-browsers.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm
index 5b3ef54659..8e513f01a2 100644
--- a/gnu/packages/web-browsers.scm
+++ b/gnu/packages/web-browsers.scm
@@ -487,7 +487,7 @@ interface.")
;; FIXME: python-pyqtwebengine needs to come before python-pyqt so
;; that it's __init__.py is used first.
python-pyqtwebengine
- python-pyqt
+ python-pyqt-without-qtwebkit
;; While qtwebengine is provided by python-pyqtwebengine, it's
;; included here so we can wrap QTWEBENGINEPROCESS_PATH.
qtwebengine))