2009-03-23 22:55:03 +00:00
|
|
|
{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser
|
|
|
|
, dbus, dbus_glib, ORBit2, libxml2
|
|
|
|
, popt, yacc, flex, gettext, intltool }:
|
2004-01-21 09:34:19 +00:00
|
|
|
|
2004-03-29 11:25:25 +01:00
|
|
|
assert pkgconfig != null && perl != null && ORBit2 != null
|
|
|
|
&& libxml2 != null && popt != null && yacc != null && flex != null;
|
2004-01-21 09:34:19 +00:00
|
|
|
|
2005-02-26 23:45:19 +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-23 22:55:03 +00:00
|
|
|
buildInputs = [
|
|
|
|
pkgconfig perl perlXMLParser libxml2 yacc flex
|
|
|
|
dbus dbus_glib
|
|
|
|
gettext intltool
|
|
|
|
];
|
2004-04-01 20:11:59 +01:00
|
|
|
propagatedBuildInputs = [ORBit2 popt];
|
2004-01-21 09:34:19 +00:00
|
|
|
}
|