about summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.8/kdenetwork/kopete.nix
blob: ec48b96fe19ba974a4f5e1d5a5bf1810d8a6bdac (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
{ kde, kdelibs, speex, libmsn, libotr, kdepimlibs, qimageblitz, libktorrent,
  jasper, libidn, mediastreamer, msilbc, pkgconfig, libxml2, libxslt, giflib,
  libgadu, boost, qca2, gpgme, sqlite }:

kde {
  buildInputs = [ kdelibs speex libmsn libotr kdepimlibs qimageblitz libktorrent
    jasper libidn mediastreamer msilbc libxml2 libxslt giflib libgadu boost qca2
    gpgme sqlite ];

  buildNativeInputs = [ pkgconfig ];

  KDEDIRS = libktorrent;

  patchPhase =
    ''
      cp -v ${./FindmsiLBC.cmake} kopete/cmake/modules/FindmsiLBC.cmake
    '';

  cmakeFlags = [ "-DBUILD_skypebuttons=TRUE" ];

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