2005-03-08 16:44:23 +01:00
|
|
|
{ input, stdenv, fetchurl, perl, perlXMLParser, pkgconfig
|
2005-06-17 22:21:29 +02:00
|
|
|
, gtk, libxml2, libgnomeprint, gnomevfs, libbonobo, GConf
|
2005-03-08 16:44:23 +01:00
|
|
|
, libgnomeprintui, libgnomecanvas
|
2009-05-10 22:17:52 +02:00
|
|
|
, gettext, intltool
|
2005-03-08 16:44:23 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit (input) name src;
|
|
|
|
buildInputs = [
|
|
|
|
perl perlXMLParser pkgconfig gnomevfs
|
2005-06-17 22:21:29 +02:00
|
|
|
libbonobo GConf libgnomeprintui libgnomecanvas
|
2009-05-10 22:17:52 +02:00
|
|
|
gettext intltool
|
2005-03-08 16:44:23 +01:00
|
|
|
];
|
|
|
|
propagatedBuildInputs = [gtk libxml2 libgnomeprint];
|
|
|
|
}
|