mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: c-toxcore: Update to 0.1.9.
* gnu/packages/messaging.scm (c-toxcore): Update to 0.1.9. [build-system]: Switch to cmake-build-system. [native-inputs]: Remove autoconf, automake, libtool, and check. [inputs]: Rename to... [propagated-inputs]: ...this. [arguments]: Remove field.
This commit is contained in:
parent
8b5bf30804
commit
9840b8faaf
1 changed files with 9 additions and 21 deletions
|
@ -670,7 +670,7 @@ (define-public libtoxcore
|
||||||
(define-public c-toxcore
|
(define-public c-toxcore
|
||||||
(package
|
(package
|
||||||
(name "c-toxcore")
|
(name "c-toxcore")
|
||||||
(version "0.1.1")
|
(version "0.1.9")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -679,32 +679,20 @@ (define-public c-toxcore
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0dybpz44pi0zm8djppjna0r8yh5wvl3l885dv2f1wp5366bk59n3"))))
|
"1y30xc1dzq9knww274d4y0m8gridcf5j851rxdri8j2s64p3qqgk"))))
|
||||||
(build-system gnu-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("pkg-config" ,pkg-config)))
|
||||||
("automake" ,automake)
|
(propagated-inputs
|
||||||
("libtool" ,libtool)
|
|
||||||
("check" ,check)
|
|
||||||
("pkg-config" ,pkg-config)))
|
|
||||||
(inputs
|
|
||||||
`(("libsodium" ,libsodium)
|
`(("libsodium" ,libsodium)
|
||||||
("opus" ,opus)
|
("opus" ,opus)
|
||||||
("libvpx" ,libvpx)))
|
("libvpx" ,libvpx)))
|
||||||
(arguments
|
(home-page "https://tox.chat")
|
||||||
`(#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'autoconf
|
|
||||||
;; The tarball source is not bootstrapped.
|
|
||||||
(lambda _
|
|
||||||
(zero? (system* "autoreconf" "-vfi")))))
|
|
||||||
#:tests? #f)) ; FIXME: Testsuite fails, needs internet connection.
|
|
||||||
(synopsis "Library for the Tox encrypted messenger protocol")
|
(synopsis "Library for the Tox encrypted messenger protocol")
|
||||||
(description
|
(description
|
||||||
"Official fork of the C library implementation of the Tox
|
"Official fork of the C library implementation of the Tox encrypted
|
||||||
encrypted messenger protocol.")
|
messenger protocol.")
|
||||||
(license license:gpl3+)
|
(license license:gpl3+)))
|
||||||
(home-page "https://tox.chat")))
|
|
||||||
|
|
||||||
(define-public utox
|
(define-public utox
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue