2013-06-29 15:50:56 +01:00
|
|
|
{stdenv, fetchurl, srtp, libzrtpcpp, pkgconfig }:
|
2009-04-22 00:18:09 +01:00
|
|
|
|
2008-01-23 16:33:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-06-29 15:50:56 +01:00
|
|
|
name = "ortp-0.22.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";
|
2013-06-29 15:50:56 +01:00
|
|
|
sha256 = "02rdm6ymgblbx8fnjfvivkl4qkgbdizrf35fyb0vln9m7jdy4dvf";
|
2008-01-23 16:33:59 +00:00
|
|
|
};
|
|
|
|
|
2013-06-29 15:50:56 +01:00
|
|
|
configureFlags = "--enable-zrtp";
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ srtp libzrtpcpp pkgconfig ];
|
|
|
|
|
2008-01-23 16:33:59 +00:00
|
|
|
meta = {
|
2009-04-22 00:18:09 +01: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;
|
2008-01-23 16:33:59 +00:00
|
|
|
};
|
|
|
|
}
|