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;
|
|
|
|
patches = [./xmlcatalog.patch];
|
2005-03-10 13:49:37 +01:00
|
|
|
buildInputs = [pkgconfig perl perlXMLParser libxml2 libxslt];
|
2005-03-08 19:51:37 +01:00
|
|
|
inherit docbook_xml_dtd_42;
|
|
|
|
builder = ./builder.sh;
|
|
|
|
}
|