diff options
author | Leo Famulari <leo@famulari.name> | 2022-01-29 13:37:08 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2022-01-29 13:38:56 -0500 |
commit | 9d13747fc27b66d8146565d6a431922ed6030ae5 (patch) | |
tree | dc6f82f9905c23900daabaae132e9b607449b60d /gnu/packages/sync.scm | |
parent | b6b0cfa2f87ef8d151bf8672c7d711afad71a3e7 (diff) |
gnu: nextcloud-client: Don't depend on QtWebKit.
This package propagates QtWebEngine and doesn't keep a reference to QtWebKit.
See <https://issues.guix.gnu.org/53289> for more information about this change.
* gnu/packages/sync.scm (qtwebkit)[inputs]: Remove qtwebkit.
[arguments]: Remove related #:configure-flag that is not recognized by
our version of nextcloud-client.
Diffstat (limited to 'gnu/packages/sync.scm')
-rw-r--r-- | gnu/packages/sync.scm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gnu/packages/sync.scm b/gnu/packages/sync.scm index 165be17e4c..f897c1ec4a 100644 --- a/gnu/packages/sync.scm +++ b/gnu/packages/sync.scm @@ -132,9 +132,7 @@ (arguments `(#:configure-flags (list - "-DUNIT_TESTING=ON" - ;; Upstream Bug: https://github.com/nextcloud/desktop/issues/2885 - "-DNO_SHIBBOLETH=ON") + "-DUNIT_TESTING=ON") #:imported-modules ((guix build glib-or-gtk-build-system) ,@%qt-build-system-modules) @@ -199,7 +197,6 @@ qtsvg qtwebchannel qtwebsockets - qtwebkit sqlite xdg-utils zlib)) |