* 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
@@ -1,5 +1,5 @@
. $stdenv/setup || exit 1
. $stdenv/setup
mkdir -p $out/xml/dtd/docbook || exit 1
cd $out/xml/dtd/docbook || exit 1
$unzip/bin/unzip $src || exit 1
mkdir -p $out/xml/dtd/docbook
cd $out/xml/dtd/docbook
unpackFile $src
@@ -3,11 +3,11 @@
assert unzip != null;
stdenv.mkDerivation {
name = "docbook-xml-4.2";
name = "docbook-xml-4.3";
builder = ./builder.sh;
src = fetchurl {
url = http://www.oasis-open.org/docbook/xml/4.2/docbook-xml-4.2.zip;
md5 = "73fe50dfe74ca631c1602f558ed8961f";
url = http://www.docbook.org/xml/4.3/docbook-xml-4.3.zip;
md5 = "ab200202b9e136a144db1e0864c45074";
};
unzip = unzip;
buildInputs = [unzip];
}