about summary refs log tree commit diff
path: root/pkgs/data/sgml+xml
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2009-11-03 15:57:27 +0000
committerPeter Simons <simons@cryp.to>2009-11-03 15:57:27 +0000
commitc0773ee99d7740ebd2c7b8f6f4059e1f68814eed (patch)
treec8592d46db236e6546c027eed72780bdcfc3832a /pkgs/data/sgml+xml
parent9e98a71eaa22ad029d959196a1788dafba9903e3 (diff)
downloadnixlib-c0773ee99d7740ebd2c7b8f6f4059e1f68814eed.tar
nixlib-c0773ee99d7740ebd2c7b8f6f4059e1f68814eed.tar.gz
nixlib-c0773ee99d7740ebd2c7b8f6f4059e1f68814eed.tar.bz2
nixlib-c0773ee99d7740ebd2c7b8f6f4059e1f68814eed.tar.lz
nixlib-c0773ee99d7740ebd2c7b8f6f4059e1f68814eed.tar.xz
nixlib-c0773ee99d7740ebd2c7b8f6f4059e1f68814eed.tar.zst
nixlib-c0773ee99d7740ebd2c7b8f6f4059e1f68814eed.zip
pkgs/data/sgml+xml/schemas/xml-dtd/docbook/4.5.nix: added docbook 4.5 XML DTD
The new asciidoc version generates docbook output for this version.

svn path=/nixpkgs/trunk/; revision=18077
Diffstat (limited to 'pkgs/data/sgml+xml')
-rw-r--r--pkgs/data/sgml+xml/schemas/xml-dtd/docbook/4.5.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/4.5.nix b/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/4.5.nix
new file mode 100644
index 000000000000..eb26d185bbe7
--- /dev/null
+++ b/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/4.5.nix
@@ -0,0 +1,10 @@
+{stdenv, fetchurl, unzip}:
+
+import ./generic.nix {
+  inherit stdenv fetchurl unzip;
+  name = "docbook-xml-4.5";
+  src = fetchurl {
+    url = http://www.docbook.org/xml/4.5/docbook-xml-4.5.zip;
+    sha256 = "1d671lcjckjri28xfbf6dq7y3xnkppa910w1jin8rjc35dx06kjf";
+  };
+}