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

40 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, intltool, alsaLib, libpulseaudio, speex, gsm
2015-04-06 23:06:50 +01:00
, libopus, ffmpeg, libX11, libXv, mesa, glew, libtheora, libvpx, SDL, libupnp
2016-09-06 10:28:54 +01:00
, ortp, libv4l, libpcap, srtp, fetchFromGitHub, cmake, bctoolbox, doxygen
, python, libXext, libmatroska, openssl
2015-04-06 23:06:50 +01:00
}:
stdenv.mkDerivation rec {
2016-09-06 10:28:54 +01:00
baseName = "mediastreamer2";
version = "2.14.0";
name = "${baseName}-${version}";
src = fetchFromGitHub {
owner = "BelledonneCommunications";
repo = "${baseName}";
rev = "${version}";
sha256 = "1b59rzsaw54mhy4pz9hndmim4rgidkn7s6c4iyl34mz58lwxpmqp";
};
patches = [ ./plugins_dir.patch ];
2016-09-06 10:28:54 +01:00
nativeBuildInputs = [ pkgconfig intltool cmake doxygen python ];
2015-04-06 23:06:50 +01:00
propagatedBuildInputs = [
alsaLib libpulseaudio speex gsm libopus
2015-04-06 23:06:50 +01:00
ffmpeg libX11 libXv mesa glew libtheora libvpx SDL libupnp
2016-09-06 10:28:54 +01:00
ortp libv4l libpcap srtp bctoolbox libXext libmatroska
openssl
2015-04-06 23:06:50 +01:00
];
2016-09-06 10:28:54 +01:00
NIX_CFLAGS_COMPILE = " -DGIT_VERSION=\"v2.14.0\" -Wno-error=deprecated-declarations ";
NIX_LDFLAGS = " -lXext -lssl ";
2015-04-06 23:06:50 +01:00
meta = with stdenv.lib; {
description = "A powerful and lightweight streaming engine specialized for voice/video telephony applications";
2015-04-06 23:06:50 +01:00
homepage = http://www.linphone.org/technical-corner/mediastreamer2/overview;
license = licenses.gpl2;
platforms = platforms.linux;
};
}