nixpkgs/pkgs/desktops/kde-4.14/kdenetwork/kopete.nix

35 lines
881 B
Nix
Raw Normal View History

2014-09-20 09:09:11 +00:00
{ kde, kdelibs, libmsn, libotr, kdepimlibs, qimageblitz, libktorrent,
jasper, libidn, mediastreamer, pkgconfig, libxslt, giflib,
libgadu, boost, qca2, sqlite, jsoncpp,
2015-05-08 02:49:24 +00:00
ortp, srtp, libv4l, fetchurl }:
2014-09-20 09:09:11 +00:00
kde {
# TODO: libmeanwhile, xmms, jsoncpp(not found), kleopatra(from kdepim but doesn't install headers?),
2015-05-08 02:49:24 +00:00
patches = [
(fetchurl {
name = "kopete.patch";
2015-05-08 02:49:24 +00:00
url = "https://bugs.kde.org/attachment.cgi?id=91567";
sha256 = "0a44rjiqzn6v3sywm17d1741sygbvlfnbqadq7qbdj3amny014m1";
})
];
2014-09-20 09:09:11 +00:00
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";
};
}