From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43252) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eLpEE-0002Yf-3e for guix-patches@gnu.org; Mon, 04 Dec 2017 06:48:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eLpEB-0004tm-4x for guix-patches@gnu.org; Mon, 04 Dec 2017 06:48:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:35670) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eLpEB-0004tR-1R for guix-patches@gnu.org; Mon, 04 Dec 2017 06:48:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eLpEA-0002jH-Q5 for guix-patches@gnu.org; Mon, 04 Dec 2017 06:48:02 -0500 Subject: [bug#29561] [PATCH 3/4] gnu: Add ortp. Resent-Message-ID: From: Ricardo Wurmus Date: Mon, 4 Dec 2017 12:46:42 +0100 Message-Id: <20171204114643.31690-3-rekado@elephly.net> In-Reply-To: <20171204114643.31690-1-rekado@elephly.net> References: <20171204114643.31690-1-rekado@elephly.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29561@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/telephony.scm (ortp): New variable. --- gnu/packages/telephony.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm index 6fd40d617..cf1ab93c3 100644 --- a/gnu/packages/telephony.scm +++ b/gnu/packages/telephony.scm @@ -272,6 +272,29 @@ and a supporting cryptographic kernel.") Communications softwares like linphone.") (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 (let ((commit "0e5980f1d78ce462e2d1ed6bc39ff35c8341f201")) ;; This is the commit used by the Ring Project. -- 2.15.0