2005-02-27 02:08:17 +00:00
|
|
|
{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser, libxml2, libglade, libgnome
|
2009-03-24 08:47:50 +00:00
|
|
|
, libgnomecanvas, gettext, intltool }:
|
2004-01-21 09:34:19 +00:00
|
|
|
|
2004-03-29 11:25:25 +01:00
|
|
|
assert pkgconfig != null && perl != null && libxml2 != null
|
|
|
|
&& libglade != null && libgnome != null && libgnomecanvas != null;
|
2004-01-21 09:34:19 +00:00
|
|
|
|
2005-03-10 12:49:37 +00:00
|
|
|
# TODO 2.8.1 doesn't work
|
2004-03-29 18:23:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2005-02-26 23:45:19 +00:00
|
|
|
inherit (input) name src;
|
2009-03-24 08:47:50 +00:00
|
|
|
buildInputs = [ pkgconfig perl perlXMLParser libglade gettext intltool ];
|
2004-04-01 20:11:59 +01:00
|
|
|
propagatedBuildInputs = [libxml2 libgnome libgnomecanvas];
|
2005-02-26 23:45:19 +00:00
|
|
|
|
2005-03-10 12:49:37 +00:00
|
|
|
LDFLAGS="-lglib-2.0"; # !!! why?
|
2004-01-21 09:34:19 +00:00
|
|
|
}
|