mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{ stdenv, fetchurl, pkgconfig, intltool, alsaLib, libpulseaudio, speex, gsm
|
|
, libopus, ffmpeg, libX11, libXv, mesa, glew, libtheora, libvpx, SDL, libupnp
|
|
, ortp, libv4l, libpcap, srtp, vim
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mediastreamer-2.11.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/linphone/mediastreamer/${name}.tar.gz";
|
|
sha256 = "1g6gawrlz1lixzs1kzckm3rxc401ww8pi00x7r5kb84bdijb02cc";
|
|
};
|
|
|
|
patches = [ ./plugins_dir.patch ];
|
|
|
|
postPatch = ''
|
|
sed -i "s/\(SRTP_LIBS=\"\$SRTP_LIBS -lsrtp\"\)/SRTP_LIBS=\"$(pkg-config --libs-only-l libsrtp)\"/g" configure
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
|
|
propagatedBuildInputs = [
|
|
alsaLib libpulseaudio speex gsm libopus
|
|
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"
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|