pidgin 2.9.0

svn path=/nixpkgs/trunk/; revision=28425
This commit is contained in:
David Guibert 2011-08-09 12:35:55 +00:00
parent cd3fda3def
commit 7de614fdf3
2 changed files with 5 additions and 10 deletions

View File

@ -18,14 +18,13 @@
, openssl ? null
, gnutls ? null
, libgcrypt ? null
, voice ? null
} :
stdenv.mkDerivation {
name = "pidgin-2.7.9";
name = "pidgin-2.9.0";
src = fetchurl {
url = mirror://sourceforge/pidgin/pidgin-2.7.9.tar.bz2;
sha256 = "17p1lcdxh241nsaz8xxbr8l5r7a0v5qg500cj0llww56k7qxf8lp";
url = mirror://sourceforge/pidgin/pidgin-2.9.0.tar.bz2;
sha256 = "1mygaap7cbak9n9zm4wshxnvb27a68w633d712vy2knr8z78xvi8";
};
inherit nss ncurses;

View File

@ -6968,16 +6968,12 @@ let
pdftk = callPackage ../tools/typesetting/pdftk { };
pidgin = import ../applications/networking/instant-messengers/pidgin {
inherit fetchurl stdenv pkgconfig perl perlXMLParser libxml2 nss nspr farsight2 python
gtkspell aspell gettext ncurses avahi dbus dbus_glib lib intltool libidn;
pidgin = callPackage ../applications/networking/instant-messengers/pidgin {
openssl = if (getConfig ["pidgin" "openssl"] true) then openssl else null;
gnutls = if (getConfig ["pidgin" "gnutls"] false) then gnutls else null;
libgcrypt = if (getConfig ["pidgin" "gnutls"] false) then libgcrypt else null;
GStreamer = gst_all.gstreamer;
inherit (gtkLibs) gtk;
inherit (gnome) startupnotification;
inherit (xlibs) libXScrnSaver;
inherit (gst_all) gstPluginsBase;
};