2005-03-08 15:44:23 +00:00
|
|
|
{ input, stdenv, fetchurl, perl, perlXMLParser, pkgconfig
|
2005-06-17 20:21:29 +00:00
|
|
|
, gtk, libxml2, libgnomeprint, gnomevfs, libbonobo, GConf
|
2005-03-08 15:44:23 +00:00
|
|
|
, libgnomeprintui, libgnomecanvas
|
2008-01-13 02:39:43 +00:00
|
|
|
, gettext
|
2005-03-08 15:44:23 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit (input) name src;
|
|
|
|
buildInputs = [
|
|
|
|
perl perlXMLParser pkgconfig gnomevfs
|
2005-06-17 20:21:29 +00:00
|
|
|
libbonobo GConf libgnomeprintui libgnomecanvas
|
2008-01-13 02:39:43 +00:00
|
|
|
gettext
|
2005-03-08 15:44:23 +00:00
|
|
|
];
|
|
|
|
propagatedBuildInputs = [gtk libxml2 libgnomeprint];
|
|
|
|
}
|