nixpkgs/pkgs/development/libraries/mediastreamer/default.nix
Lluís Batlle i Rossell 169c8ce3f7 Linphone 3.6.1
Lots of updates and new/old libs to get the latest linphone

It segfaults on running.
2013-06-29 16:59:08 +02:00

21 lines
691 B
Nix

{ stdenv, fetchurl, pkgconfig, alsaLib, ffmpeg, speex, ortp, pulseaudio,
libv4l, libtheora, intltool, libvpx, gsm, mesa, libX11, libXv, libXext,
glew, libopus, libupnp, vim }:
stdenv.mkDerivation rec {
name = "mediastreamer-2.9.0";
src = fetchurl {
url = "mirror://savannah/linphone/mediastreamer/${name}.tar.gz";
sha256 = "1mdcaqkcdwzlj7hy3bz0ipkrrqiw1cgy01in8f24rfra9i2bjif2";
};
# TODO: make it load plugins from *_PLUGIN_PATH
nativeBuildInputs = [pkgconfig intltool];
propagatedBuildInputs = [ alsaLib ffmpeg speex ortp pulseaudio libX11
libXv libXext libv4l libtheora libvpx gsm mesa glew libopus libupnp vim ];
configureFlags = "--enable-external-ortp";
}