nixpkgs/pkgs/development/libraries/ortp/default.nix
Nicolas Pierron 5e4adf0e4b Update oRTP (0.13.1 -> 0.16.3)
svn path=/nixpkgs/trunk/; revision=23595
2010-09-01 17:40:37 +00:00

16 lines
403 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "ortp-0.16.3";
src = fetchurl {
url = "mirror://savannah/linphone/ortp/sources/${name}.tar.gz";
sha256 = "13805ec34ee818408aa1b4571915ef8f9e544c838a0fca9dff8d2308de6574eb";
};
meta = {
description = "A Real-Time Transport Protocol (RFC3550) stack";
homepage = http://www.linphone.org/index.php/eng/code_review/ortp;
};
}