mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: qxmpp: Update to 1.10.3 and build with Qt6.
* gnu/packages/messaging.scm (qxmpp): Update to 1.10.3. [origin]: Update uri. [build-system]: Switch to qt-build-system. [inputs]: Remove qtbase-5; add libomemo-c, qca-qt6 and qt5compat. [arguments]<#:qtbase>: Choose Qt6. <#:configure-flags>: Add flag. [home-page]: Update. Change-Id: I995b060fd65082c3d3ee99cbab8cbe6280169c6e
This commit is contained in:
parent
9d71b2f37d
commit
ada284dcb9
1 changed files with 16 additions and 9 deletions
|
@ -2,7 +2,7 @@
|
||||||
;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2014, 2017 Julien Lepiller <julien@lepiller.eu>
|
;;; Copyright © 2014, 2017 Julien Lepiller <julien@lepiller.eu>
|
||||||
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
||||||
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2015, 2025 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2021, 2022, 2024, 2025 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2021, 2022, 2024, 2025 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2015, 2018-2021, 2023 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2015, 2018-2021, 2023 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2016, 2017 Nikita <nikita@n0.is>
|
;;; Copyright © 2016, 2017 Nikita <nikita@n0.is>
|
||||||
|
@ -400,20 +400,23 @@ conferencing.")
|
||||||
(define-public qxmpp
|
(define-public qxmpp
|
||||||
(package
|
(package
|
||||||
(name "qxmpp")
|
(name "qxmpp")
|
||||||
(version "1.4.0")
|
;; kaidan requires a precise version
|
||||||
|
(version "1.10.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/qxmpp-project/qxmpp")
|
(url "https://invent.kde.org/libraries/qxmpp")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1knpq1jkwk0lxdwczbmzf7qrjvlxba9yr40nbq9s5nqkcx6q1c3i"))))
|
(base32 "0qinrbr63b1baqv1a7cph8bma6kj1ib8s8ywq6d9497lc1yl2kgi"))))
|
||||||
(build-system cmake-build-system)
|
(build-system qt-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list "-DBUILD_EXAMPLES=false"
|
`(#:qtbase ,qtbase
|
||||||
"-DWITH_GSTREAMER=true")
|
#:configure-flags (list "-DBUILD_EXAMPLES=false"
|
||||||
|
"-DWITH_GSTREAMER=true"
|
||||||
|
"-DBUILD_OMEMO=ON") ;needed by kaidan
|
||||||
#:test-exclude
|
#:test-exclude
|
||||||
(string-join ;; These tests use the network.
|
(string-join ;; These tests use the network.
|
||||||
(list "tst_qxmppiceconnection"
|
(list "tst_qxmppiceconnection"
|
||||||
|
@ -423,8 +426,12 @@ conferencing.")
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
(list gstreamer qtbase-5))
|
(list
|
||||||
(home-page "https://github.com/qxmpp-project/qxmpp")
|
gstreamer
|
||||||
|
libomemo-c
|
||||||
|
qca-qt6
|
||||||
|
qt5compat))
|
||||||
|
(home-page "https://invent.kde.org/libraries/qxmpp")
|
||||||
(synopsis "XMPP client and server library")
|
(synopsis "XMPP client and server library")
|
||||||
(description
|
(description
|
||||||
"QXmpp is a XMPP client and server library written in C++ and uses the Qt
|
"QXmpp is a XMPP client and server library written in C++ and uses the Qt
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue