nixpkgs/pkgs/applications/networking/instant-messengers/pidgin/default.nix
Sander van der Burg 8c806707f3 Fixed pigdin compilation by adding nspr as buildinput
svn path=/nixpkgs/trunk/; revision=16267
2009-07-09 09:50:51 +00:00

55 lines
1.5 KiB
Nix

/**
* 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
*/
{ stdenv, fetchurl, pkgconfig, gtk, gtkspell, aspell,
GStreamer, startupnotification, gettext,
perl, perlXMLParser, libxml2, nss, nspr,
libXScrnSaver, ncurses, avahi, dbus, dbus_glib, intltool
, lib
, openssl ? null
, gnutls ? null
} :
stdenv.mkDerivation {
name = "pidgin-2.5.6";
src = fetchurl {
url = mirror://sourceforge/pidgin/pidgin-2.5.6.tar.bz2;
sha256 = "00lsb0pmz1zn37xzwji91izzklr9famm100al612m4hy0i37yh4v";
};
inherit nss ncurses;
buildInputs = [
gtkspell aspell
GStreamer startupnotification
libxml2]
++ (lib.optional (openssl != null) openssl)
++ (lib.optional (gnutls != null) gnutls)
++
[nss nspr
libXScrnSaver ncurses
avahi dbus dbus_glib intltool
]
;
propagatedBuildInputs = [
pkgconfig gtk perl perlXMLParser gettext
];
configureFlags="--with-nspr-includes=${nspr}/include/nspr --with-nspr-libs=${nspr}/lib --with-nss-includes=${nss}/include/nss --with-nss-libs=${nss}/lib --with-ncurses-headers=${ncurses}/include --disable-meanwhile --disable-nm --disable-tcl"
+ (lib.optionalString (gnutls != null) " --enable-gnutls=yes --enable-nss=no")
;
meta = {
description = "Pidgin IM - XMPP(Jabber), AIM/ICQ, IRC, SIP etc client.";
homepage = http://pidgin.im;
};
}