2009-04-22 01:18:09 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2008-01-23 17:33:59 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2011-06-07 23:49:37 +02:00
|
|
|
name = "ortp-0.16.4";
|
2008-01-23 17:33:59 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2008-02-18 21:51:25 +01:00
|
|
|
url = "mirror://savannah/linphone/ortp/sources/${name}.tar.gz";
|
2011-06-07 23:49:37 +02:00
|
|
|
sha256 = "0yb835l9spic4518ghb28jlwc0ihqjzpd0bgysgjf7z3bbg7km90";
|
2008-01-23 17:33:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2009-04-22 01:18:09 +02:00
|
|
|
description = "A Real-Time Transport Protocol (RFC3550) stack";
|
2008-02-18 21:51:25 +01:00
|
|
|
homepage = http://www.linphone.org/index.php/eng/code_review/ortp;
|
2008-01-23 17:33:59 +01:00
|
|
|
};
|
|
|
|
}
|