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,
|
|
|
|
libXScrnSaver
|
2007-05-13 16:22:24 +02:00
|
|
|
} :
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2007-06-12 14:33:55 +02:00
|
|
|
name = "pidgin-2.0.1";
|
2007-05-13 16:22:24 +02:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2007-06-12 14:33:55 +02:00
|
|
|
url = http://heanet.dl.sourceforge.net/sourceforge/pidgin/pidgin-2.0.1.tar.bz2;
|
|
|
|
sha256 = "1z2is5hp77qc5lw200jf0d1rai4gp83q2kl9x06ra026c2591yc0";
|
2007-05-13 16:22:24 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
inherit nss;
|
|
|
|
buildInputs = [
|
2007-05-14 02:51:30 +02:00
|
|
|
pkgconfig gtk gtkspell aspell
|
2007-05-13 16:22:24 +02:00
|
|
|
GStreamer startupnotification gettext
|
|
|
|
perl perlXMLParser libxml2 openssl nss
|
2007-05-13 18:19:46 +02:00
|
|
|
libXScrnSaver
|
2007-05-13 16:22:24 +02:00
|
|
|
];
|
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
|
|
|
}
|