* Upgraded the DocBook DTD and the DocBook XSL stylesheets.

* Added the DocBook EBNF module.

svn path=/nixpkgs/trunk/; revision=926
This commit is contained in:
Eelco Dolstra
2004-04-08 11:49:27 +00:00
parent 02ec562596
commit a1c5ff3fb6
9 changed files with 46 additions and 18 deletions
@@ -0,0 +1,13 @@
{stdenv, fetchurl, unzip}:
assert unzip != null;
stdenv.mkDerivation {
name = "docbook-xml-ebnf-1.2b1";
builder = ./builder.sh;
dtd = fetchurl {
url = http://www.docbook.org/xml/ebnf/1.2b1/dbebnf.dtd;
md5 = "e50f7d38caf4285965c7a247e026fa7c";
};
catalog = ./docbook-ebnf.cat;
}