about summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.14/kdenetwork/kopete.nix
blob: f5750d60045f3d6f3c252b52f436c6bd989731bd (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
34
{ kde, kdelibs, libmsn, libotr, kdepimlibs, qimageblitz, libktorrent,
  jasper, libidn, mediastreamer, pkgconfig, libxslt, giflib,
  libgadu, boost, qca2, sqlite, jsoncpp,
  ortp, srtp, libv4l, fetchurl }:

kde {

# TODO: libmeanwhile, xmms, jsoncpp(not found), kleopatra(from kdepim but doesn't install headers?),

  patches = [
    (fetchurl {
      name = "kopete.patch";
      url = "https://bugs.kde.org/attachment.cgi?id=91567";
      sha256 = "0a44rjiqzn6v3sywm17d1741sygbvlfnbqadq7qbdj3amny014m1";
    })
  ];

  buildInputs = [
    kdelibs qca2 mediastreamer libgadu jsoncpp
    kdepimlibs qimageblitz sqlite jasper libotr libmsn giflib
    libidn libxslt boost
    ortp srtp libv4l
  ];

  nativeBuildInputs = [ pkgconfig ];

  KDEDIRS = libktorrent;

  cmakeFlags = [ "-DBUILD_skypebuttons=TRUE" ];

  meta = {
    description = "A KDE multi-protocol IM client";
  };
}