3
0
Fork 0
forked from mirrors/nixpkgs

pidgin: Fix compilation errors, clean up

This commit is contained in:
Rickard Nilsson 2014-10-30 10:10:27 +01:00
parent 90d6146d12
commit eaf513da6a
2 changed files with 31 additions and 33 deletions

View file

@ -1,49 +1,37 @@
/**
* 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, 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, libICE, libXext, libSM
, openssl ? null
, gnutls ? null
, libgcrypt ? null
}:
# FIXME: clean the mess around choosing the SSL library (nss by default)
stdenv.mkDerivation rec {
majorVersion = "2";
name = "pidgin-${majorVersion}.10.10";
name = "pidgin-${version}";
version = "2.10.10";
src = fetchurl {
url = "mirror://sourceforge/pidgin/${name}.tar.bz2";
sha256 = "0bc2bk2g3w90mpz9sn9j95c71z4i2i3wxaqa2zpmmixf5r8rasyw";
};
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
libxml2 nss nspr farsight2
libXScrnSaver ncurses python
avahi dbus dbus_glib intltool libidn
libICE libXext libSM
]
;
++ (lib.optional (openssl != null) openssl)
++ (lib.optional (gnutls != null) gnutls)
++ (lib.optional (libgcrypt != null) libgcrypt);
propagatedBuildInputs = [
pkgconfig gtk perl perlXMLParser gettext
@ -51,9 +39,18 @@ stdenv.mkDerivation rec {
patches = [./pidgin-makefile.patch ./add-search-path.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")
;
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.optionals (gnutls != null) ["--enable-gnutls=yes" "--enable-nss=no"]);
meta = with stdenv.lib; {
description = "Multi-protocol instant messaging client";
homepage = http://pidgin.im;

View file

@ -10197,6 +10197,7 @@ let
gnutls = if config.pidgin.gnutls or false then gnutls else null;
libgcrypt = if config.pidgin.gnutls or false then libgcrypt else null;
startupnotification = libstartup_notification;
inherit (xlibs) libXext libICE libSM;
};
pidgin-with-plugins = callPackage ../applications/networking/instant-messengers/pidgin/wrapper.nix {