2015-04-06 21:43:33 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2009-04-21 23:18:09 +00:00
|
|
|
|
2008-01-23 16:33:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-05-03 17:17:14 +00:00
|
|
|
name = "ortp-${version}";
|
|
|
|
version = "0.25.0";
|
2008-01-23 16:33:59 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2008-02-18 20:51:25 +00:00
|
|
|
url = "mirror://savannah/linphone/ortp/sources/${name}.tar.gz";
|
2016-05-03 17:17:14 +00:00
|
|
|
sha256 = "16ldzrn1268dr6kdl8mibg2knd6w75a1v0iqfsgk5zdig5mq5sqd";
|
2008-01-23 16:33:59 +00:00
|
|
|
};
|
|
|
|
|
2015-04-06 21:43:33 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-04-21 23:18:09 +00:00
|
|
|
description = "A Real-Time Transport Protocol (RFC3550) stack";
|
2008-02-18 20:51:25 +00:00
|
|
|
homepage = http://www.linphone.org/index.php/eng/code_review/ortp;
|
2015-04-06 21:43:33 +00:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.all;
|
2008-01-23 16:33:59 +00:00
|
|
|
};
|
|
|
|
}
|