2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, cmake, fetchFromGitHub, bctoolbox }:
|
2009-04-21 16:18:09 -07:00
|
|
|
|
2008-01-23 08:33:59 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-11-23 08:37:58 -08:00
|
|
|
pname = "ortp";
|
2018-02-09 21:19:52 -08:00
|
|
|
version = "1.0.2";
|
2008-01-23 08:33:59 -08:00
|
|
|
|
2016-09-06 02:16:14 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "BelledonneCommunications";
|
2019-11-23 08:37:58 -08:00
|
|
|
repo = pname;
|
2019-09-08 16:38:31 -07:00
|
|
|
rev = version;
|
2018-02-09 21:19:52 -08:00
|
|
|
sha256 = "12cwv593bsdnxs0zfcp07vwyk7ghlz2wv7vdbs1ksv293w3vj2rv";
|
2008-01-23 08:33:59 -08:00
|
|
|
};
|
|
|
|
|
2016-09-06 02:16:14 -07:00
|
|
|
buildInputs = [ bctoolbox ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2015-04-06 14:43:33 -07:00
|
|
|
meta = with stdenv.lib; {
|
2009-04-21 16:18:09 -07:00
|
|
|
description = "A Real-Time Transport Protocol (RFC3550) stack";
|
2019-11-23 08:37:58 -08:00
|
|
|
homepage = https://linphone.org/technical-corner/ortp;
|
|
|
|
license = licenses.gpl2Plus;
|
2015-04-06 14:43:33 -07:00
|
|
|
platforms = platforms.all;
|
2008-01-23 08:33:59 -08:00
|
|
|
};
|
|
|
|
}
|