2012-10-15 14:21:13 +00:00
|
|
|
{ stdenv, fetchurl, aspell, qt4, zlib, sox, libX11, xproto, libSM
|
|
|
|
, libICE, qca2, pkgconfig, qca2_ossl, liboil, speex, callPackage, which, glib }:
|
2009-11-18 09:39:59 +00:00
|
|
|
|
2009-06-03 18:23:49 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2010-02-22 09:53:17 +00:00
|
|
|
name = "psi-0.14";
|
2012-10-15 14:21:13 +00:00
|
|
|
|
2009-06-03 18:23:49 +00:00
|
|
|
src = fetchurl {
|
2009-11-18 09:39:59 +00:00
|
|
|
url = "mirror://sourceforge/psi/${name}.tar.bz2";
|
2010-02-22 09:53:17 +00:00
|
|
|
sha256 = "1h54a1qryfva187sw9qnb4lv1d3h3lysqgw55v727swvslh4l0da";
|
2009-06-03 18:23:49 +00:00
|
|
|
};
|
|
|
|
|
2012-10-15 14:21:13 +00:00
|
|
|
buildInputs =
|
|
|
|
[ aspell qt4 zlib sox libX11 xproto libSM libICE
|
|
|
|
qca2 qca2_ossl pkgconfig which glib
|
|
|
|
];
|
2009-06-03 18:23:49 +00:00
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE="-I${qca2}/include/QtCrypto";
|
2012-10-15 14:21:13 +00:00
|
|
|
|
2009-06-03 18:39:32 +00:00
|
|
|
NIX_LDFLAGS="-lqca";
|
2009-06-03 18:23:49 +00:00
|
|
|
|
2009-11-18 09:39:59 +00:00
|
|
|
configureFlags =
|
|
|
|
[ " --with-zlib-inc=${zlib}/include "
|
|
|
|
" --disable-bundled-qca"
|
|
|
|
];
|
2009-06-03 18:23:49 +00:00
|
|
|
|
2012-03-14 22:44:52 +00:00
|
|
|
psiMedia = callPackage ./psimedia.nix { };
|
2010-06-09 12:56:15 +00:00
|
|
|
|
2012-10-15 14:21:13 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2010-06-09 12:56:15 +00:00
|
|
|
postInstall = ''
|
|
|
|
PSI_PLUGINS="$out/lib/psi/plugins"
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p "$PSI_PLUGINS"
|
2010-06-09 12:56:15 +00:00
|
|
|
ln -s "${psiMedia}"/share/psi/plugins/*.so "$PSI_PLUGINS"
|
|
|
|
PSI_QT_PLUGINS="$out/share/psi"
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p "$PSI_QT_PLUGINS"/crypto
|
2010-06-09 12:56:15 +00:00
|
|
|
ln -s "${qca2_ossl}"/lib/qt4/plugins/crypto/*.so "$PSI_QT_PLUGINS"/crypto
|
|
|
|
'';
|
|
|
|
|
2009-06-03 18:23:49 +00:00
|
|
|
meta = {
|
|
|
|
description = "Psi, an XMPP (Jabber) client";
|
2012-10-15 14:21:13 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-06-03 18:23:49 +00:00
|
|
|
};
|
|
|
|
}
|