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