1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-23 10:40:31 +02:00

gnu: qtox: Update to 1.18.3 and switch to Qt6.

* gnu/packages/messaging.scm (qtox): Update to 1.18.3.
[arguments]<#:qtbase>: New entry.
<#:phases>{disable-network-tests}: Adapt.
[inputs]: Remove ffmpeg-6, qtsvg-5, and sonnet-5; add ffmpeg, qtsvg,
and sonnet.
[native-inputs]: Remove qttools-5; add qttools.

Change-Id: I25545976980f23cd3abda0849dfccfd581f2cb06
This commit is contained in:
Andreas Enge
2025-10-26 00:17:17 +02:00
parent 7f6f1b1850
commit f41d7cc700

View File

@@ -1767,7 +1767,7 @@ instant messenger with audio and video chat capabilities.")
(define-public qtox
(package
(name "qtox")
(version "1.17.6")
(version "1.18.3")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -1776,22 +1776,22 @@ instant messenger with audio and video chat capabilities.")
(file-name (git-file-name name version))
(sha256
(base32
"0pb0ag9z9fz5m1f6lxzl86vksv0n290bw0nh2800scsjhyi9d8lx"))))
"0qxaq5nzsjmxa3w4nl04p7ydfzyjq15scnyrjlzdwxh9vgsgg4g6"))))
(build-system qt-build-system)
(arguments
(list #:phases
(list #:qtbase qtbase
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'disable-network-tests
(lambda _
;; These tests require network access.
;; This test requires network access.
(substitute* "cmake/Testing.cmake"
(("auto_test\\(core core\\)") "# auto_test(core core)")
(("auto_test\\(net bsu\\)") "# auto_test(net bsu)")))))))
(("auto_test\\(net bsu") "# auto_test(net bsu")))))))
(native-inputs
(list pkg-config qttools-5))
(list pkg-config qttools))
(inputs
(list bash-minimal
ffmpeg-6
ffmpeg
filteraudio
libsodium
c-toxcore
@@ -1802,8 +1802,8 @@ instant messenger with audio and video chat capabilities.")
sqlite
openal
qrencode
qtsvg-5
sonnet-5
qtsvg
sonnet
sqlcipher))
(home-page "https://qtox.github.io/")
(synopsis "Tox chat client using Qt")