2004-01-21 10:34:19 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, perl, glib, gnomevfs, libbonobo
|
|
|
|
, GConf, popt, zlib }:
|
|
|
|
|
2004-03-29 12:25:25 +02:00
|
|
|
assert pkgconfig != null && perl != null && glib != null
|
|
|
|
&& gnomevfs != null && libbonobo != null && GConf != null
|
|
|
|
&& popt != null && zlib != null;
|
2004-01-21 10:34:19 +01:00
|
|
|
|
|
|
|
# !!! TO 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"
|
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2004-01-21 10:34:19 +01:00
|
|
|
name = "libgnome-2.0.6";
|
|
|
|
src = fetchurl {
|
|
|
|
url = ftp://ftp.gnome.org/pub/gnome/sources/libgnome/2.4/libgnome-2.4.0.tar.bz2;
|
|
|
|
md5 = "caec1e12d64b98a2925a4317ac16429f";
|
|
|
|
};
|
2004-04-01 21:11:59 +02:00
|
|
|
buildInputs = [pkgconfig perl popt zlib];
|
|
|
|
propagatedBuildInputs = [glib gnomevfs libbonobo GConf];
|
2004-01-21 10:34:19 +01:00
|
|
|
}
|