2007-05-13 16:22:24 +02:00
|
|
|
/**
|
|
|
|
* Possible missing configuration:
|
|
|
|
*
|
|
|
|
* - silcclient
|
|
|
|
* - libebook-1.2
|
|
|
|
* - libedata-book-1.2
|
|
|
|
* - checking for XScreenSaverRegister in -lXext... no
|
|
|
|
* - checking for XScreenSaverRegister in -lXss... no
|
|
|
|
* - ao
|
|
|
|
* - audiofile-config
|
|
|
|
* - doxygen
|
|
|
|
*/
|
2007-05-14 02:51:30 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk, gtkspell, aspell,
|
2007-05-13 16:22:24 +02:00
|
|
|
GStreamer, startupnotification, gettext,
|
2007-05-13 18:19:46 +02:00
|
|
|
perl, perlXMLParser, libxml2, openssl, nss,
|
2007-06-28 11:53:12 +02:00
|
|
|
libXScrnSaver, ncurses
|
2007-05-13 16:22:24 +02:00
|
|
|
} :
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2007-08-16 23:07:45 +02:00
|
|
|
name = "pidgin-2.1.0";
|
2007-05-13 16:22:24 +02:00
|
|
|
src = fetchurl {
|
2007-08-16 23:07:45 +02:00
|
|
|
url = http://heanet.dl.sourceforge.net/sourceforge/pidgin/pidgin-2.1.0.tar.bz2;
|
|
|
|
sha256 = "1y552n75pp4rrnmmpmfyym1w18589n3600xsq7b2bjx6rk66kgkr";
|
2007-05-13 16:22:24 +02:00
|
|
|
};
|
|
|
|
|
2007-06-28 11:53:12 +02:00
|
|
|
inherit nss ncurses;
|
2007-05-13 16:22:24 +02:00
|
|
|
buildInputs = [
|
2007-08-17 01:14:52 +02:00
|
|
|
gtkspell aspell
|
|
|
|
GStreamer startupnotification
|
|
|
|
libxml2 openssl nss
|
2007-06-28 11:53:12 +02:00
|
|
|
libXScrnSaver ncurses
|
2007-05-13 16:22:24 +02:00
|
|
|
];
|
2007-08-17 01:14:52 +02:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
pkgconfig gtk perl perlXMLParser gettext
|
|
|
|
];
|
|
|
|
|
2007-06-28 11:53:12 +02:00
|
|
|
configureFlags="--with-nspr-includes=${nss}/include/nspr --with-nspr-libs=${nss}/lib --with-nss-includes=${nss}/include/nss --with-nss-libs=${nss}/lib --with-ncurses-headers=${ncurses}/include";
|
2007-06-26 13:49:45 +02:00
|
|
|
meta = {
|
|
|
|
description = "Pidgin IM - XMPP(Jabber), AIM/ICQ, IRC, SIP etc client.";
|
|
|
|
};
|
2007-05-13 16:22:24 +02:00
|
|
|
}
|