diff options
| author | Andreas Enge <andreas@enge.fr> | 2025-10-26 00:17:17 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-10-26 11:31:59 +0100 |
| commit | f41d7cc700b9b080d4fb791f4ac632fc79b9c377 (patch) | |
| tree | f8c121908f9e11d92ff809c7f8667bb2cbc36958 | |
| parent | 7f6f1b1850740cf32753327cc08747fc6232975d (diff) | |
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
| -rw-r--r-- | gnu/packages/messaging.scm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index b11e4b002b7..9c123efd6f1 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -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") |
