mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: Add ortp.
* gnu/packages/telephony.scm (ortp): New variable.
This commit is contained in:
parent
80e2524c9a
commit
0c45a6a4c8
1 changed files with 23 additions and 0 deletions
|
@ -272,6 +272,29 @@ (define-public bctoolbox
|
||||||
Communications softwares like linphone.")
|
Communications softwares like linphone.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public ortp
|
||||||
|
(package
|
||||||
|
(name "ortp")
|
||||||
|
(version "0.27.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://download.savannah.nongnu.org/"
|
||||||
|
"releases/linphone/ortp/sources/ortp-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1by0dqdqrj5avzcvjws30g8v5sa61wj12x00sxw0kn1smcrshqgb"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("bctoolbox" ,bctoolbox)))
|
||||||
|
(native-inputs
|
||||||
|
`(("pkg-config" ,pkg-config)))
|
||||||
|
(home-page "https://linphone.org/")
|
||||||
|
(synopsis "Implementation of the Real-time transport protocol")
|
||||||
|
(description "oRTP is a library implementing the Real-time transport
|
||||||
|
protocol (RFC 3550).")
|
||||||
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
(define-public libiax2
|
(define-public libiax2
|
||||||
(let ((commit "0e5980f1d78ce462e2d1ed6bc39ff35c8341f201"))
|
(let ((commit "0e5980f1d78ce462e2d1ed6bc39ff35c8341f201"))
|
||||||
;; This is the commit used by the Ring Project.
|
;; This is the commit used by the Ring Project.
|
||||||
|
|
Loading…
Reference in a new issue