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-12-31 18:31:41 +01:00
|
|
|
name = "pidgin-2.3.1";
|
2007-05-13 16:22:24 +02:00
|
|
|
src = fetchurl {
|
2007-12-31 18:31:41 +01:00
|
|
|
url = mirror://sourceforge/pidgin/pidgin-2.3.1.tar.bz2;
|
|
|
|
sha256 = "17mpirkfrv48jqn86l23b2ia2nzz9hqhll6lp4c2q8sbff3kc21d";
|
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.";
|
2008-01-30 20:49:42 +01:00
|
|
|
homepage = http://pidgin.im;
|
2007-06-26 13:49:45 +02:00
|
|
|
};
|
2007-05-13 16:22:24 +02:00
|
|
|
}
|