2009-09-18 08:10:32 -07:00
|
|
|
{ pkgs, options
|
|
|
|
# revision can have multiple values: local, HEAD or any revision number.
|
|
|
|
, revision ? "HEAD"
|
|
|
|
}:
|
2008-06-05 08:33:17 -07:00
|
|
|
|
2013-10-17 05:09:05 -07:00
|
|
|
with pkgs.lib;
|
|
|
|
|
2011-09-14 11:20:50 -07:00
|
|
|
let
|
2009-10-05 16:15:06 -07:00
|
|
|
|
2013-10-23 08:03:46 -07:00
|
|
|
options' = filter (x: x.visible && !x.internal) (optionAttrSetToDocList options);
|
2013-10-23 07:59:33 -07:00
|
|
|
|
|
|
|
optionsXML = builtins.toFile "options.xml" (builtins.unsafeDiscardStringContext (builtins.toXML options'));
|
2008-01-04 06:24:42 -08:00
|
|
|
|
|
|
|
optionsDocBook = pkgs.runCommand "options-db.xml" {} ''
|
2009-10-05 16:47:50 -07:00
|
|
|
${pkgs.libxslt}/bin/xsltproc \
|
|
|
|
--stringparam revision '${revision}' \
|
|
|
|
-o $out ${./options-to-docbook.xsl} ${optionsXML}
|
2008-01-04 06:24:42 -08:00
|
|
|
'';
|
2009-09-18 08:10:37 -07:00
|
|
|
|
2010-08-11 05:28:53 -07:00
|
|
|
in rec {
|
|
|
|
|
|
|
|
# Generate the NixOS manual.
|
2008-01-04 06:24:42 -08:00
|
|
|
manual = pkgs.stdenv.mkDerivation {
|
|
|
|
name = "nixos-manual";
|
|
|
|
|
2013-10-17 05:09:05 -07:00
|
|
|
sources = sourceFilesBySuffices ./. [".xml"];
|
2008-01-04 06:24:42 -08:00
|
|
|
|
2010-08-11 05:28:53 -07:00
|
|
|
buildInputs = [ pkgs.libxml2 pkgs.libxslt ];
|
2008-01-04 06:24:42 -08:00
|
|
|
|
|
|
|
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 = ''
|
2009-09-18 08:10:32 -07:00
|
|
|
ln -s $sources/*.xml . # */
|
2008-01-04 06:24:42 -08:00
|
|
|
ln -s ${optionsDocBook} options-db.xml
|
2009-07-14 08:47:03 -07:00
|
|
|
|
2009-10-05 06:17:45 -07:00
|
|
|
# Check the validity of the manual sources.
|
|
|
|
xmllint --noout --nonet --xinclude --noxincludenode \
|
|
|
|
--relaxng ${pkgs.docbook5}/xml/rng/docbook/docbook.rng \
|
|
|
|
manual.xml
|
|
|
|
|
|
|
|
# Generate the HTML manual.
|
2009-07-14 08:47:03 -07:00
|
|
|
dst=$out/share/doc/nixos
|
|
|
|
ensureDir $dst
|
2008-01-04 06:24:42 -08:00
|
|
|
xsltproc $xsltFlags --nonet --xinclude \
|
2009-10-05 16:15:06 -07:00
|
|
|
--output $dst/manual.html \
|
2009-06-05 10:16:42 -07:00
|
|
|
${pkgs.docbook5_xsl}/xml/xsl/docbook/xhtml/docbook.xsl \
|
2008-01-04 06:24:42 -08:00
|
|
|
./manual.xml
|
2009-09-18 08:10:37 -07:00
|
|
|
|
2012-07-25 08:54:24 -07:00
|
|
|
mkdir -p $dst/images/callouts
|
|
|
|
cp ${pkgs.docbook5_xsl}/xml/xsl/docbook/images/callouts/*.gif $dst/images/callouts/
|
2013-01-09 04:43:57 -08:00
|
|
|
|
2009-07-14 08:47:03 -07:00
|
|
|
cp ${./style.css} $dst/style.css
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2010-08-11 05:28:53 -07:00
|
|
|
ensureDir $out/nix-support
|
|
|
|
echo "doc manual $dst manual.html" >> $out/nix-support/hydra-build-products
|
2012-07-25 08:54:24 -07:00
|
|
|
''; # */
|
2010-08-11 05:28:53 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
# Generate the NixOS manpages.
|
|
|
|
manpages = pkgs.stdenv.mkDerivation {
|
|
|
|
name = "nixos-manpages";
|
|
|
|
|
2013-10-17 05:09:05 -07:00
|
|
|
sources = sourceFilesBySuffices ./. [".xml"];
|
2010-08-11 05:28:53 -07:00
|
|
|
|
|
|
|
buildInputs = [ pkgs.libxml2 pkgs.libxslt ];
|
|
|
|
|
|
|
|
buildCommand = ''
|
|
|
|
ln -s $sources/*.xml . # */
|
|
|
|
ln -s ${optionsDocBook} options-db.xml
|
|
|
|
|
|
|
|
# Check the validity of the manual sources.
|
|
|
|
xmllint --noout --nonet --xinclude --noxincludenode \
|
|
|
|
--relaxng ${pkgs.docbook5}/xml/rng/docbook/docbook.rng \
|
|
|
|
./man-pages.xml
|
2009-07-14 08:47:03 -07:00
|
|
|
|
2009-10-05 06:17:45 -07:00
|
|
|
# Generate manpages.
|
2009-07-14 08:47:03 -07:00
|
|
|
ensureDir $out/share/man
|
|
|
|
xsltproc --nonet --xinclude \
|
|
|
|
--param man.output.in.separate.dir 1 \
|
|
|
|
--param man.output.base.dir "'$out/share/man/'" \
|
2009-10-05 16:15:06 -07:00
|
|
|
--param man.endnotes.are.numbered 0 \
|
2009-07-14 08:47:03 -07:00
|
|
|
${pkgs.docbook5_xsl}/xml/xsl/docbook/manpages/docbook.xsl \
|
|
|
|
./man-pages.xml
|
2008-01-04 06:24:42 -08:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2011-09-14 11:20:50 -07:00
|
|
|
}
|