summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@friendly-machines.com>2025-02-16 13:55:49 +0100
committerDanny Milosavljevic <dannym@friendly-machines.com>2025-02-16 14:29:48 +0100
commit406591fbacedcd1b0d969feda1d04808d868fa65 (patch)
treefa896b8dd745c55423114d63f782bbde8a5447a2 /gnu/packages
parentebd9a7985efb3e2b002456e73ce0d8eae55d8a89 (diff)
gnu: kiwix-desktop: Support wayland.
* gnu/packages/web.scm (kiwix-desktop)[build-system]: Switch to qt-build-system. [inputs]: Add qtwayland-5. [test-target]: Set to "check". Change-Id: I4b2644c820e3fa22d24738798240e7b39c824063
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/web.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 058649bf6ba..1a70da4a90e 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -105,6 +105,7 @@
#:use-module (guix build-system perl)
#:use-module (guix build-system pyproject)
#:use-module (guix build-system python)
+ #:use-module (guix build-system qt)
#:use-module (guix build-system scons)
#:use-module (guix build-system trivial)
#:use-module (gnu packages)
@@ -9396,9 +9397,10 @@ It contains the code shared by all Kiwix ports.")
(base32
"0hlk05gcb3fmnxhwj6gan51v98rdq3iv2lklwbpmm1bazmz8i7br"))
(patches (search-patches "kiwix-desktop-newer-libkiwix.patch"))))
- (build-system gnu-build-system)
+ (build-system qt-build-system)
(arguments
- `(#:phases
+ `(#:test-target "check"
+ #:phases
(modify-phases %standard-phases
(replace 'configure
(lambda* (#:key outputs #:allow-other-keys)
@@ -9425,6 +9427,7 @@ It contains the code shared by all Kiwix ports.")
qtdeclarative-5
qtwebchannel-5
qtwebengine-5
+ qtwayland-5
xapian
zlib
`(,zstd "lib")))