forked from mirrors/nixpkgs
remove gaim, clean up pidgin dependencies a bit
svn path=/nixpkgs/trunk/; revision=8683
This commit is contained in:
parent
5a6c931123
commit
375526c382
|
@ -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
|
|
|
@ -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];
|
|
||||||
}
|
|
|
@ -10,7 +10,7 @@
|
||||||
* - audiofile-config
|
* - audiofile-config
|
||||||
* - doxygen
|
* - doxygen
|
||||||
*/
|
*/
|
||||||
{ stdenv, fetchurl, pkgconfig, glib, gtk, gtkspell, aspell,
|
{ stdenv, fetchurl, pkgconfig, gtk, gtkspell, aspell,
|
||||||
GStreamer, startupnotification, gettext,
|
GStreamer, startupnotification, gettext,
|
||||||
perl, perlXMLParser, libxml2, openssl, nss,
|
perl, perlXMLParser, libxml2, openssl, nss,
|
||||||
libXScrnSaver
|
libXScrnSaver
|
||||||
|
@ -26,7 +26,7 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
inherit nss;
|
inherit nss;
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
pkgconfig glib gtk gtkspell aspell
|
pkgconfig gtk gtkspell aspell
|
||||||
GStreamer startupnotification gettext
|
GStreamer startupnotification gettext
|
||||||
perl perlXMLParser libxml2 openssl nss
|
perl perlXMLParser libxml2 openssl nss
|
||||||
libXScrnSaver
|
libXScrnSaver
|
||||||
|
|
|
@ -2681,14 +2681,9 @@ rec {
|
||||||
gtksharp = gtksharp1;
|
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 {
|
pidgin = import ../applications/networking/instant-messengers/pidgin {
|
||||||
inherit fetchurl stdenv pkgconfig perl perlXMLParser libxml2 openssl nss gtkspell GStreamer aspell gettext;
|
inherit fetchurl stdenv pkgconfig perl perlXMLParser libxml2 openssl nss gtkspell GStreamer aspell gettext;
|
||||||
inherit (gtkLibs) glib gtk;
|
inherit (gtkLibs) gtk;
|
||||||
inherit (gnome) startupnotification;
|
inherit (gnome) startupnotification;
|
||||||
inherit (xlibs) libXScrnSaver;
|
inherit (xlibs) libXScrnSaver;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue