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

43 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, intltool, alsaLib, libpulseaudio, speex, gsm
2015-04-07 00:06:50 +02:00
, libopus, ffmpeg, libX11, libXv, mesa, glew, libtheora, libvpx, SDL, libupnp
, ortp, libv4l, libpcap, srtp, vim
}:
stdenv.mkDerivation rec {
2015-08-26 17:18:53 +02:00
name = "mediastreamer-2.11.2";
src = fetchurl {
url = "mirror://savannah/linphone/mediastreamer/${name}.tar.gz";
2015-08-26 17:18:53 +02:00
sha256 = "1g6gawrlz1lixzs1kzckm3rxc401ww8pi00x7r5kb84bdijb02cc";
};
patches = [ ./plugins_dir.patch ];
2015-04-07 00:06:50 +02:00
postPatch = ''
sed -i "s/\(SRTP_LIBS=\"\$SRTP_LIBS -lsrtp\"\)/SRTP_LIBS=\"$(pkg-config --libs-only-l libsrtp)\"/g" configure
'';
2015-04-07 00:06:50 +02:00
nativeBuildInputs = [ pkgconfig intltool ];
2015-04-07 00:06:50 +02:00
propagatedBuildInputs = [
alsaLib libpulseaudio speex gsm libopus
2015-04-07 00:06:50 +02:00
ffmpeg libX11 libXv mesa glew libtheora libvpx SDL libupnp
ortp libv4l libpcap srtp
vim
];
configureFlags = [
"--enable-external-ortp"
"--with-srtp=${srtp}"
"--enable-xv"
"--enable-glx"
2015-04-07 00:06:50 +02:00
];
meta = with stdenv.lib; {
description = "a powerful and lightweight streaming engine specialized for voice/video telephony applications";
homepage = http://www.linphone.org/technical-corner/mediastreamer2/overview;
license = licenses.gpl2;
platforms = platforms.linux;
};
}