nixpkgs/pkgs/development/libraries/ortp/default.nix

18 lines
472 B
Nix
Raw Normal View History

2015-04-06 23:43:33 +02:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2015-08-26 17:19:19 +02:00
name = "ortp-0.24.2";
src = fetchurl {
url = "mirror://savannah/linphone/ortp/sources/${name}.tar.gz";
2015-08-26 17:19:19 +02:00
sha256 = "05k6ianphr533qnjwxsv7jnh7fb2sq0dj1pdy1bk2w5khmlwfdyb";
};
2015-04-06 23:43:33 +02:00
meta = with stdenv.lib; {
description = "A Real-Time Transport Protocol (RFC3550) stack";
homepage = http://www.linphone.org/index.php/eng/code_review/ortp;
2015-04-06 23:43:33 +02:00
license = licenses.lgpl21;
platforms = platforms.all;
};
}