2009-04-21 16:18:09 -07:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2008-01-23 08:33:59 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2012-01-03 07:39:05 -08:00
|
|
|
name = "ortp-0.18.0";
|
2008-01-23 08:33:59 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2008-02-18 12:51:25 -08:00
|
|
|
url = "mirror://savannah/linphone/ortp/sources/${name}.tar.gz";
|
2012-01-03 07:39:05 -08:00
|
|
|
sha256 = "1cgx9xid0abk3cad3xjdvx7p9whinlhrviphyrd9zkhhx7ddkih2";
|
2008-01-23 08:33:59 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2009-04-21 16:18:09 -07:00
|
|
|
description = "A Real-Time Transport Protocol (RFC3550) stack";
|
2008-02-18 12:51:25 -08:00
|
|
|
homepage = http://www.linphone.org/index.php/eng/code_review/ortp;
|
2008-01-23 08:33:59 -08:00
|
|
|
};
|
|
|
|
}
|