2005-03-08 19:51:37 +01:00
|
|
|
{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser
|
|
|
|
, libxml2, libxslt, docbook_xml_dtd_42
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit (input) name src;
|
2007-10-18 23:08:47 +02:00
|
|
|
preConfigure = "
|
|
|
|
substituteInPlace extract/dtds/Makefile.am --replace /usr/bin/xmlcatalog xmlcatalog
|
|
|
|
";
|
2005-03-10 13:49:37 +01:00
|
|
|
buildInputs = [pkgconfig perl perlXMLParser libxml2 libxslt];
|
2006-08-12 00:26:55 +02:00
|
|
|
configureFlags = "--with-xml-catalog=${docbook_xml_dtd_42}/xml/dtd/docbook/docbook.cat";
|
2005-03-08 19:51:37 +01:00
|
|
|
}
|