lol
1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "ortp-0.24.2";
5
6 src = fetchurl {
7 url = "mirror://savannah/linphone/ortp/sources/${name}.tar.gz";
8 sha256 = "05k6ianphr533qnjwxsv7jnh7fb2sq0dj1pdy1bk2w5khmlwfdyb";
9 };
10
11 meta = with stdenv.lib; {
12 description = "A Real-Time Transport Protocol (RFC3550) stack";
13 homepage = http://www.linphone.org/index.php/eng/code_review/ortp;
14 license = licenses.lgpl21;
15 platforms = platforms.all;
16 };
17}