summary refs log tree commit diff
path: root/pkgs/data/sgml+xml/schemas/xml-dtd/docbook-ebnf/default.nix
blob: e9ff03f784353a8142b8c2c206acf7edfba67a54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{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;
    sha256 = "0min5dsc53my13b94g2yd65q1nkjcf4x1dak00bsc4ckf86mrx95";
  };
  catalog = ./docbook-ebnf.cat;

  meta = {
    platforms = stdenv.lib.platforms.unix;
  };
}