summary refs log tree commit diff
path: root/pkgs/data/sgml+xml/schemas/xml-dtd/docbook-4.3/default.nix
blob: 93b5165724e48ce7011ddf0ea0070115e5ea328b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, unzip}:

assert unzip != null;

stdenv.mkDerivation {
  name = "docbook-xml-4.3";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.docbook.org/xml/4.3/docbook-xml-4.3.zip;
    md5 = "ab200202b9e136a144db1e0864c45074";
  };
  buildInputs = [unzip];
}