nixpkgs/pkgs/applications/networking/instant-messengers/linphone/default.nix

44 lines
1.3 KiB
Nix
Raw Normal View History

2015-04-07 01:15:57 +00:00
{ stdenv, fetchurl, intltool, pkgconfig, readline, openldap, cyrus_sasl, libupnp
, zlib, libxml2, gtk2, libnotify, speex, ffmpeg, libX11, libsoup, udev
2015-04-07 01:15:57 +00:00
, ortp, mediastreamer, sqlite, belle-sip, libosip, libexosip
2015-08-26 20:17:41 +00:00
, mediastreamer-openh264, makeWrapper
2015-04-07 01:15:57 +00:00
}:
2013-02-16 20:48:47 +00:00
stdenv.mkDerivation rec {
name = "linphone-${version}";
major = "3.9";
version = "${major}.1";
src = fetchurl {
url = "mirror://savannah/linphone/${major}.x/sources/${name}.tar.gz";
sha256 = "1b14gwq36d0sbn1125if9zydll9kliigk19zchbqiy9n2gjymrl4";
};
2015-04-07 01:15:57 +00:00
buildInputs = [
readline openldap cyrus_sasl libupnp zlib libxml2 gtk2 libnotify speex ffmpeg libX11
libsoup udev ortp mediastreamer sqlite belle-sip libosip libexosip
2015-04-07 01:15:57 +00:00
];
2015-08-26 20:17:41 +00:00
nativeBuildInputs = [ intltool pkgconfig makeWrapper ];
2015-04-07 01:15:57 +00:00
configureFlags = [
"--enable-ldap"
"--with-ffmpeg=${ffmpeg.dev}"
2015-04-07 01:15:57 +00:00
"--enable-external-ortp"
"--enable-external-mediastreamer"
];
2013-02-16 20:48:47 +00:00
2015-08-26 20:17:41 +00:00
postInstall = ''
for i in $(cd $out/bin && ls); do
wrapProgram $out/bin/$i --set MEDIASTREAMER_PLUGINS_DIR ${mediastreamer-openh264}/lib/mediastreamer/plugins
done
'';
2015-04-07 01:15:57 +00:00
meta = with stdenv.lib; {
homepage = http://www.linphone.org/;
description = "Open Source video SIP softphone";
2015-04-07 01:15:57 +00:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}