summary refs log tree commit diff
path: root/pkgs/data/sgml+xml/schemas/xml-dtd/docbook-ebnf/default.nix
blob: 5d5a622ba422cc1205d854f678135778fe71375f (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-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;
}