2005-06-17 06:52:24 -07:00
|
|
|
{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser, glib, gnomevfs, libbonobo
|
2006-08-11 15:26:55 -07:00
|
|
|
, GConf, popt, zlib, esound
|
|
|
|
}:
|
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;
|
2006-08-11 15:26:55 -07:00
|
|
|
buildInputs = [pkgconfig perl perlXMLParser popt zlib esound];
|
2005-06-17 06:52:24 -07:00
|
|
|
propagatedBuildInputs = [glib gnomevfs libbonobo GConf];
|
2004-01-21 01:34:19 -08:00
|
|
|
}
|