summary refs log tree commit diff
path: root/doc/default.nix
blob: b8dac00eb65e9f23d510644a3632ee981337a705 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
with import ./.. { };
with lib;

stdenv.mkDerivation {
  name = "nixpkgs-manual";

  sources = sourceFilesBySuffices ./. [".xml"];

  buildInputs = [ pandoc libxml2 libxslt ];

  xsltFlags = ''
    --param section.autolabel 1
    --param section.label.includes.component.label 1
    --param html.stylesheet 'style.css'
    --param xref.with.number.and.title 1
    --param toc.section.depth 3
    --param admon.style '''
    --param callout.graphics.extension '.gif'
  '';

  buildCommand = ''
    {
      echo "<chapter xmlns=\"http://docbook.org/ns/docbook\""
      echo "         xmlns:xlink=\"http://www.w3.org/1999/xlink\""
      echo "         xml:id=\"users-guide-to-the-haskell-infrastructure\">"
      echo ""
      echo "<title>User's Guide to the Haskell Infrastructure</title>"
      echo ""
      pandoc ${./haskell-users-guide.md} -w docbook | \
        sed -e 's|<ulink url=|<link xlink:href=|' \
            -e 's|</ulink>|</link>|' \
            -e 's|<sect. id=|<section xml:id=|' \
            -e 's|</sect[0-9]>|</section>|'
      echo ""
      echo "</chapter>"
    } >haskell-users-guide.xml

    ln -s "$sources/"*.xml .

    echo ${nixpkgsVersion} > .version

    xmllint --noout --nonet --xinclude --noxincludenode \
      --relaxng ${docbook5}/xml/rng/docbook/docbook.rng \
      manual.xml

    dst=$out/share/doc/nixpkgs
    mkdir -p $dst
    xsltproc $xsltFlags --nonet --xinclude \
      --output $dst/manual.html \
      ${docbook5_xsl}/xml/xsl/docbook/xhtml/docbook.xsl \
      ./manual.xml

    cp ${./style.css} $dst/style.css

    mkdir -p $dst/images/callouts
    cp "${docbook5_xsl}/xml/xsl/docbook/images/callouts/"*.gif $dst/images/callouts/

    mkdir -p $out/nix-support
    echo "doc manual $dst manual.html" >> $out/nix-support/hydra-build-products
  '';
}