93393a6748
Added gtkspell Added pidgin, builds but does not run yet: running pidgin fails to find libX11.so.6. ldd on pidgin reports: libX11.so.6 => not found .... libX11.so.6 => /nix/store/brsva6rh1p2ymjvk7054a90is5panrhf-libX11-1.1.1/lib/libX11.so.6 (0xb7358000) which looks a bit weird ... Maybe some problem with patchelf? Or just a build problem and should the library path be set using an environment variable? svn path=/nixpkgs/trunk/; revision=8660
33 lines
798 B
Nix
33 lines
798 B
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, glib, gtk, gtkspell, aspell,
|
|
GStreamer, startupnotification, gettext,
|
|
perl, perlXMLParser, libxml2, openssl, nss
|
|
} :
|
|
|
|
stdenv.mkDerivation {
|
|
name = "pidgin-2.0.0";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://kent.dl.sourceforge.net/sourceforge/pidgin/pidgin-2.0.0.tar.bz2;
|
|
md5 = "132355d7e236d9c2820a2668621eef43";
|
|
};
|
|
|
|
inherit nss;
|
|
buildInputs = [
|
|
pkgconfig glib gtk gtkspell aspell
|
|
GStreamer startupnotification gettext
|
|
perl perlXMLParser libxml2 openssl nss
|
|
];
|
|
}
|