mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
0b669505c2
svn path=/nixpkgs/trunk/; revision=28655
21 lines
640 B
Nix
21 lines
640 B
Nix
{ stdenv, fetchurl, intltool, pkgconfig, gtk, libglade, libosip, libexosip, speex,
|
|
readline, ffmpeg, alsaLib, SDL, libv4l, libtheora, libXv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "linphone-3.4.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/linphone/3.4.x/sources/${name}.tar.gz";
|
|
sha256 = "14k655z0kfmnm42nxhsl25rjim9swrr4kpnplkx3pd9b3yha1rwj";
|
|
};
|
|
|
|
buildInputs = [ intltool pkgconfig gtk libglade libosip libexosip speex readline
|
|
ffmpeg alsaLib SDL libv4l libtheora libXv ];
|
|
|
|
meta = {
|
|
homepage = http://www.linphone.org/;
|
|
description = "Open Source video SIP softphone";
|
|
license = "GPLv2+";
|
|
};
|
|
}
|