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

18 lines
472 B
Nix
Raw Normal View History

2015-04-06 22:43:33 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2015-04-06 22:43:33 +01:00
name = "ortp-0.24.1";
src = fetchurl {
url = "mirror://savannah/linphone/ortp/sources/${name}.tar.gz";
2015-04-06 22:43:33 +01:00
sha256 = "1mach7cdq4kydqkll8ra1kir818da07z253rf9pihifipqhcxv6i";
};
2015-04-06 22:43:33 +01: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 22:43:33 +01:00
license = licenses.lgpl21;
platforms = platforms.all;
};
}