51ce4ea2f7
to 2.8.3. * development/libraries/gnome/*: copied gtk packages to gnome directory. gnome 2.8.3 did not work on gtk 2.4 nor gtk 2.6. Using the specific version of the gnome platform 2.8.3 directory 'solved' the issue. * development/libraries/gnome/gnome-icon-theme: new packag * development/libraries/gnome/libgtkhtml: new package * development/libraries/gnome/gtkhtml: new package * development/libraries/gnome/libgnomeprint: new package * development/libraries/gnome/libgnomeprintui: new package * development/libraries/gnome/gnome-keyring: new package * development/libraries/gnome/gail: new package * applications/editors/monodoc: new package svn path=/nixpkgs/trunk/; revision=2312
20 lines
815 B
Nix
20 lines
815 B
Nix
{input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser, glib, gnomevfs, libbonobo
|
|
, gconf, popt, zlib }:
|
|
|
|
assert pkgconfig != null && perl != null && glib != null
|
|
&& gnomevfs != null && libbonobo != null && gconf != null
|
|
&& popt != null && zlib != null;
|
|
|
|
# !!! TODO CHECK:
|
|
# libgnome tries to install stuff into GConf (which fails):
|
|
# "WARNING: failed to install schema `/schemas/desktop/gnome/url-handlers/https/need-terminal' locale `is': Failed:
|
|
# Failed to create file `/nix/store/14d4fc76451786eba9dea087d56dc719-GConf-2.4.0/etc/gconf/gconf.xml.defaults/%gconf.xml': Permission denied"
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
buildInputs = [pkgconfig perl perlXMLParser popt zlib];
|
|
propagatedBuildInputs = [glib gnomevfs libbonobo gconf];
|
|
|
|
PERL5LIB = perlXMLParser ~ "/lib/site_perl";
|
|
}
|