remove gaim, clean up pidgin dependencies a bit

svn path=/nixpkgs/trunk/; revision=8683
This commit is contained in:
Armijn Hemel 2007-05-14 00:51:30 +00:00
parent 5a6c931123
commit 375526c382
4 changed files with 3 additions and 44 deletions

View File

@ -1,9 +0,0 @@
source $stdenv/setup
configureFlags="\
--with-nspr-includes=$nss/include/nspr \
--with-nspr-libs=$nss/lib \
--with-nss-includes=$nss/include/nss \
--with-nss-libs=$nss/lib"
genericBuild

View File

@ -1,27 +0,0 @@
/**
* Possible missing configuration:
*
* - silcclient
* - libstartup-notification
* - libebook-1.2
* - libedata-book-1.2
* - checking for XScreenSaverRegister in -lXext... no
* - checking for XScreenSaverRegister in -lXss... no
* - gtkspell
* - ao
* - audiofile-config
* - doxygen
*/
{stdenv, fetchurl, pkgconfig, glib, gtk, perl, perlXMLParser, libxml2, openssl, nss}:
stdenv.mkDerivation {
name = "gaim-2.0.0pre6";
builder = ./builder.sh;
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/gaim/gaim-2.0.0beta6.tar.gz;
md5 = "0c7520d4ce083704d196c04c63dcd16a";
};
inherit nss;
buildInputs = [pkgconfig glib gtk perl perlXMLParser libxml2 openssl nss];
}

View File

@ -10,7 +10,7 @@
* - audiofile-config
* - doxygen
*/
{ stdenv, fetchurl, pkgconfig, glib, gtk, gtkspell, aspell,
{ stdenv, fetchurl, pkgconfig, gtk, gtkspell, aspell,
GStreamer, startupnotification, gettext,
perl, perlXMLParser, libxml2, openssl, nss,
libXScrnSaver
@ -26,7 +26,7 @@ stdenv.mkDerivation {
inherit nss;
buildInputs = [
pkgconfig glib gtk gtkspell aspell
pkgconfig gtk gtkspell aspell
GStreamer startupnotification gettext
perl perlXMLParser libxml2 openssl nss
libXScrnSaver

View File

@ -2681,14 +2681,9 @@ rec {
gtksharp = gtksharp1;
};
gaim = import ../applications/networking/instant-messengers/gaim {
inherit fetchurl stdenv pkgconfig perl perlXMLParser libxml2 openssl nss;
inherit (gtkLibs) glib gtk;
};
pidgin = import ../applications/networking/instant-messengers/pidgin {
inherit fetchurl stdenv pkgconfig perl perlXMLParser libxml2 openssl nss gtkspell GStreamer aspell gettext;
inherit (gtkLibs) glib gtk;
inherit (gtkLibs) gtk;
inherit (gnome) startupnotification;
inherit (xlibs) libXScrnSaver;
};