summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/linphone/default.nix
blob: e10b4f9c83c57adc3ef865c89b464b2fe67b7449 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv, fetchurl, intltool, pkgconfig, gtk, libglade, libosip, libexosip
, speex, readline, mediastreamer, libsoup, udev, libnotify }:

stdenv.mkDerivation rec {
  name = "linphone-3.6.1";

  src = fetchurl {
    url = "mirror://savannah/linphone/3.6.x/sources/${name}.tar.gz";
    sha256 = "186jm4nd4ggb0j8cs8wnpm4sy9cr7chq0c6kx2yc6y4k7qi83fh5";
  };

  buildInputs = [ gtk libglade libosip libexosip readline mediastreamer speex libsoup udev
    libnotify ];

  nativeBuildInputs = [ intltool pkgconfig ];

  preConfigure = ''
    rm -r mediastreamer2 oRTP
    sed -i s,/bin/echo,echo, coreapi/Makefile*
  '';

  configureFlags = "--enable-external-ortp --enable-external-mediastreamer";

  NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations"; # I'm lazy to fix these for them

  meta = {
    homepage = http://www.linphone.org/;
    description = "Open Source video SIP softphone";
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = stdenv.lib.platforms.gnu;
    broken = true;
  };
}