summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/psi/default.nix
blob: e895b3cc00d1af478a3942469ee131e5921db309 (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
{ stdenv, fetchurl, enchant, qt4, zlib, sox, libX11, xorgproto, libSM
, libICE, qca2, pkgconfig, which, glib
, libXScrnSaver
}:

stdenv.mkDerivation rec {
  name = "psi-0.15";

  src = fetchurl {
    url = "mirror://sourceforge/psi/${name}.tar.bz2";
    sha256 = "593b5ddd7934af69c245afb0e7290047fd7dedcfd8765baca5a3a024c569c7e6";
  };

  buildInputs =
    [ enchant qt4 zlib sox libX11 xorgproto libSM libICE
      qca2 pkgconfig which glib libXScrnSaver
    ];

  NIX_CFLAGS_COMPILE="-I${qca2}/include/QtCrypto";

  NIX_LDFLAGS="-lqca";

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "Psi, an XMPP (Jabber) client";
    maintainers = [ maintainers.raskin ];
    license = licenses.gpl2;
    platforms = stdenv.lib.platforms.linux;
  };
}