f0925eeded
Use rec to prevent "name != src.basename" in the future. REVIEW:6 svn path=/nixpkgs/trunk/; revision=33204
59 lines
1.7 KiB
Nix
59 lines
1.7 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, gst_plugins_base, startupnotification, gettext,
|
|
perl, perlXMLParser, libxml2, nss, nspr, farsight2,
|
|
libXScrnSaver, ncurses, avahi, dbus, dbus_glib, intltool, libidn
|
|
, lib, python
|
|
, openssl ? null
|
|
, gnutls ? null
|
|
, libgcrypt ? null
|
|
} :
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pidgin-2.10.2";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/pidgin/${name}.tar.bz2";
|
|
sha256 = "1f1j9pr7zwpxwbv94510brh69pmwn4v3np12h75pfrnkas8d5kg5";
|
|
};
|
|
|
|
inherit nss ncurses;
|
|
buildInputs = [
|
|
gtkspell aspell
|
|
gstreamer gst_plugins_base startupnotification
|
|
libxml2]
|
|
++ (lib.optional (openssl != null) openssl)
|
|
++ (lib.optional (gnutls != null) gnutls)
|
|
++ (lib.optional (libgcrypt != null) libgcrypt)
|
|
++
|
|
[nss nspr farsight2
|
|
libXScrnSaver ncurses python
|
|
avahi dbus dbus_glib intltool libidn
|
|
]
|
|
;
|
|
|
|
propagatedBuildInputs = [
|
|
pkgconfig gtk perl perlXMLParser gettext
|
|
];
|
|
|
|
patches = [./pidgin-makefile.patch ];
|
|
|
|
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;
|
|
};
|
|
}
|