2007-03-04 13:28:24 -08:00
|
|
|
{ input, stdenv, fetchurl, gnome, pkgconfig, perl, perlXMLParser
|
|
|
|
, popt, zlib, esound, gettext
|
2006-08-11 15:26:55 -07:00
|
|
|
}:
|
2004-01-21 01:34:19 -08:00
|
|
|
|
2005-02-26 15:45:19 -08:00
|
|
|
# !!! TODO CHECK:
|
2004-01-21 01:34:19 -08:00
|
|
|
# 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 09:23:01 -08:00
|
|
|
stdenv.mkDerivation {
|
2005-02-26 15:45:19 -08:00
|
|
|
inherit (input) name src;
|
2007-03-04 13:28:24 -08:00
|
|
|
buildInputs = [pkgconfig perl perlXMLParser popt zlib esound gettext];
|
|
|
|
propagatedBuildInputs = [gnome.glib gnome.gnomevfs gnome.libbonobo gnome.GConf];
|
2004-01-21 01:34:19 -08:00
|
|
|
}
|