summary refs log tree commit diff
path: root/pkgs/data/sgml+xml/schemas/docbook-5.0/default.nix
blob: 640659a61080f7adbee1c0ec9d1a0de109e133d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ lib, stdenv, fetchurl, unzip }:

stdenv.mkDerivation {
  name = "docbook5-5.0";

  src = fetchurl {
    url = http://www.docbook.org/xml/5.0/docbook-5.0.zip;
    sha256 = "13i04dkd709f0p5f2413sf2y9321pfi4y85ynf8wih6ryphnbk9x";
  };

  nativeBuildInputs = [ unzip ];

  installPhase =
    ''
      dst=$out/share/xml/docbook-5.0
      mkdir -p $dst
      cp -prv * $dst/

      substituteInPlace $dst/catalog.xml --replace 'uri="' "uri=\"$dst/"

      rm -rf $dst/docs $dst/ChangeLog

      # Backwards compatibility. Will remove eventually.
      mkdir -p $out/xml/rng $out/xml/dtd
      ln -s $dst/rng $out/xml/rng/docbook
      ln -s $dst/dtd $out/xml/dtd/docbook
    '';

  meta = {
    description = "Schemas for DocBook 5.0, a semantic markup language for technical documentation";
    homepage = http://docbook.org/xml/5.0/;
    maintainers = [ lib.maintainers.eelco ];
    platforms = lib.platforms.all;
  };
}