2012-02-17 13:03:33 +00:00
|
|
|
{ stdenv, fetchurl, intltool, pkgconfig, gtk, libglade, libosip, libexosip
|
2013-02-16 20:48:47 +00:00
|
|
|
, speex, readline, mediastreamer, libsoup }:
|
|
|
|
|
2011-08-18 13:52:41 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-02-16 20:48:47 +00:00
|
|
|
name = "linphone-3.5.2";
|
2011-01-13 20:49:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-02-10 10:13:48 +00:00
|
|
|
url = "mirror://savannah/linphone/3.5.x/sources/${name}.tar.gz";
|
2013-02-16 20:48:47 +00:00
|
|
|
sha256 = "0830iam7kgqphgk3q6qx93kp5wrf0gnm5air82jamy7377jxadys";
|
2011-01-13 20:49:58 +00:00
|
|
|
};
|
|
|
|
|
2013-02-16 20:48:47 +00:00
|
|
|
patches = [ ./fix-deprecated.patch ];
|
|
|
|
|
|
|
|
buildInputs = [ gtk libglade libosip libexosip readline mediastreamer speex libsoup ];
|
2011-01-13 20:49:58 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ intltool pkgconfig ];
|
2012-02-17 13:03:33 +00:00
|
|
|
|
2013-02-16 20:48:47 +00:00
|
|
|
preConfigure = "rm -r mediastreamer2 oRTP";
|
|
|
|
|
2012-02-17 13:03:33 +00:00
|
|
|
configureFlags = "--enable-external-ortp --enable-external-mediastreamer";
|
2012-02-10 10:13:48 +00:00
|
|
|
|
2011-01-13 20:49:58 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.linphone.org/;
|
|
|
|
description = "Open Source video SIP softphone";
|
|
|
|
license = "GPLv2+";
|
2012-02-17 13:03:37 +00:00
|
|
|
platforms = stdenv.lib.platforms.gnu;
|
2011-01-13 20:49:58 +00:00
|
|
|
};
|
|
|
|
}
|