2005-02-26 15:45:19 -08:00
|
|
|
{input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser, ORBit2, libxml2, popt, yacc, flex}:
|
2004-01-21 01:34:19 -08:00
|
|
|
|
2004-03-29 02:25:25 -08:00
|
|
|
assert pkgconfig != null && perl != null && ORBit2 != null
|
|
|
|
&& libxml2 != null && popt != null && yacc != null && flex != null;
|
2004-01-21 01:34:19 -08:00
|
|
|
|
2005-02-26 15:45:19 -08:00
|
|
|
# todo 2.8.1 doesn;t work
|
2004-03-29 09:23:01 -08:00
|
|
|
stdenv.mkDerivation {
|
2005-02-26 15:45:19 -08:00
|
|
|
inherit (input) name src;
|
2005-03-10 04:49:37 -08:00
|
|
|
buildInputs = [pkgconfig perl perlXMLParser libxml2 yacc flex];
|
2004-04-01 11:11:59 -08:00
|
|
|
propagatedBuildInputs = [ORBit2 popt];
|
2004-01-21 01:34:19 -08:00
|
|
|
}
|