* Scrollkeeper requires DocBook XML 4.2 (not 4.3).

svn path=/nixpkgs/trunk/; revision=930
This commit is contained in:
Eelco Dolstra
2004-04-08 14:06:15 +00:00
parent f1d1900a92
commit 9dddc7f142
8 changed files with 30 additions and 7 deletions

View File

@@ -2,6 +2,6 @@
export PERL5LIB=$perlXMLParser/lib/site_perl:$PERL5LIB
configureFlags="--with-xml-catalog=$docbook_xml_dtd/xml/dtd/docbook/docbook.cat"
configureFlags="--with-xml-catalog=$docbook_xml_dtd_42/xml/dtd/docbook/docbook.cat"
genericBuild

View File

@@ -1,8 +1,8 @@
{ stdenv, fetchurl, perl, libxml2, libxslt, docbook_xml_dtd
{ stdenv, fetchurl, perl, libxml2, libxslt, docbook_xml_dtd_42
, perlXMLParser}:
assert perl != null && libxml2 != null && libxslt != null
&& docbook_xml_dtd != null && perlXMLParser != null;
&& docbook_xml_dtd_42 != null && perlXMLParser != null;
# !!! seems to need iconv, but cannot find it since $glibc/bin is not in PATH
@@ -14,5 +14,5 @@ stdenv.mkDerivation {
md5 = "161eb3f29e30e7b24f84eb93ac696155";
};
buildInputs = [perl libxml2 libxslt];
inherit docbook_xml_dtd perlXMLParser;
inherit docbook_xml_dtd_42 perlXMLParser;
}