lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 24 lines 644 B view raw
1{ stdenv, cmake, fetchFromGitHub, bctoolbox }: 2 3stdenv.mkDerivation rec { 4 baseName = "ortp"; 5 version = "1.0.2"; 6 name = "${baseName}-${version}"; 7 8 src = fetchFromGitHub { 9 owner = "BelledonneCommunications"; 10 repo = "${baseName}"; 11 rev = "${version}"; 12 sha256 = "12cwv593bsdnxs0zfcp07vwyk7ghlz2wv7vdbs1ksv293w3vj2rv"; 13 }; 14 15 buildInputs = [ bctoolbox ]; 16 nativeBuildInputs = [ cmake ]; 17 18 meta = with stdenv.lib; { 19 description = "A Real-Time Transport Protocol (RFC3550) stack"; 20 homepage = http://www.linphone.org/index.php/eng/code_review/ortp; 21 license = licenses.lgpl21; 22 platforms = platforms.all; 23 }; 24}