4874ff1144
svn path=/nixpkgs/trunk/; revision=33065
25 lines
722 B
Nix
25 lines
722 B
Nix
{ stdenv, fetchurl, intltool, pkgconfig, gtk, libglade, libosip, libexosip
|
|
, speex, readline, mediastreamer }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "linphone-3.5.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/linphone/3.5.x/sources/${name}.tar.gz";
|
|
sha256 = "1jrgsyx2mn6y50hjfx79fzqhp42r78cjr63w3bfjdl258zy2f6ix";
|
|
};
|
|
|
|
buildInputs = [ gtk libglade libosip libexosip readline mediastreamer speex ];
|
|
|
|
buildNativeInputs = [ intltool pkgconfig ];
|
|
|
|
configureFlags = "--enable-external-ortp --enable-external-mediastreamer";
|
|
|
|
meta = {
|
|
homepage = http://www.linphone.org/;
|
|
description = "Open Source video SIP softphone";
|
|
license = "GPLv2+";
|
|
platforms = stdenv.lib.platforms.gnu;
|
|
};
|
|
}
|