gnu: qtox: Update to 1.10.1.
* gnu/packages/messaging.scm (qtox): Update to 1.10.1. [inputs]: Remove libtoxcore and qt; add c-toxcore, qtbase, and qtsvg. [native-inputs]: Remove qt; add qttools. [build-system]: Change to cmake-build-system. [arguments]: Remove configure phase replacement.
This commit is contained in:
parent
9619a95ed8
commit
2eb676819f
|
@ -756,32 +756,16 @@ instant messenger with audio and video chat capabilities.")
|
||||||
(define-public qtox
|
(define-public qtox
|
||||||
(package
|
(package
|
||||||
(name "qtox")
|
(name "qtox")
|
||||||
(version "1.5.1")
|
(version "1.10.1")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/qTox/qTox/archive/v"
|
(uri (string-append "https://github.com/qTox/qTox/archive/v"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0y15mc39x54k1kz36cw9412kl1p1p6nzlx97gagv4gg3vybfhbjv"))
|
(base32
|
||||||
|
"0b37an611i2jdri59vsspyl3yf6cn4h0bn9d2jdrkw8d2rfqc8qy"))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))))
|
(file-name (string-append name "-" version ".tar.gz"))))
|
||||||
(inputs
|
(build-system cmake-build-system)
|
||||||
`(("ffmpeg" ,ffmpeg)
|
|
||||||
("glib" ,glib)
|
|
||||||
("gtk+" ,gtk+-2)
|
|
||||||
("libsodium" ,libsodium)
|
|
||||||
("libtoxcore" ,libtoxcore)
|
|
||||||
("libvpx" ,libvpx)
|
|
||||||
("libxscrnsaver" ,libxscrnsaver)
|
|
||||||
("libx11" ,libx11)
|
|
||||||
("openal" ,openal)
|
|
||||||
("qrencode" ,qrencode)
|
|
||||||
("qt" ,qt)
|
|
||||||
("sqlcipher" ,sqlcipher)))
|
|
||||||
(native-inputs
|
|
||||||
`(("pkg-config" ,pkg-config)
|
|
||||||
("qmake" ,qt)))
|
|
||||||
(build-system gnu-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
@ -791,13 +775,24 @@ instant messenger with audio and video chat capabilities.")
|
||||||
(("__DATE__") "\"\"")
|
(("__DATE__") "\"\"")
|
||||||
(("__TIME__") "\"\"")
|
(("__TIME__") "\"\"")
|
||||||
(("TIMESTAMP") "\"\""))
|
(("TIMESTAMP") "\"\""))
|
||||||
#t))
|
#t)))))
|
||||||
(replace 'configure
|
(inputs
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
`(("ffmpeg" ,ffmpeg)
|
||||||
(zero?
|
("glib" ,glib)
|
||||||
(system* "qmake"
|
("gtk+" ,gtk+-2)
|
||||||
(string-append "PREFIX="
|
("libsodium" ,libsodium)
|
||||||
(assoc-ref outputs "out")))))))))
|
("c-toxcore" ,c-toxcore)
|
||||||
|
("libvpx" ,libvpx)
|
||||||
|
("libxscrnsaver" ,libxscrnsaver)
|
||||||
|
("libx11" ,libx11)
|
||||||
|
("openal" ,openal)
|
||||||
|
("qrencode" ,qrencode)
|
||||||
|
("qtbase" ,qtbase)
|
||||||
|
("qtsvg" ,qtsvg)
|
||||||
|
("sqlcipher" ,sqlcipher)))
|
||||||
|
(native-inputs
|
||||||
|
`(("pkg-config" ,pkg-config)
|
||||||
|
("qmake" ,qttools)))
|
||||||
(home-page "https://qtox.github.io/")
|
(home-page "https://qtox.github.io/")
|
||||||
(synopsis "Tox chat client using Qt")
|
(synopsis "Tox chat client using Qt")
|
||||||
(description "qTox is a Tox client that follows the Tox design
|
(description "qTox is a Tox client that follows the Tox design
|
||||||
|
|
Loading…
Reference in New Issue