2013-11-01 16:44:03 +01:00
|
|
|
{ pkgs, options, version, revision }:
|
2008-06-05 17:33:17 +02:00
|
|
|
|
2013-10-17 14:09:05 +02:00
|
|
|
with pkgs.lib;
|
|
|
|
|
2011-09-14 20:20:50 +02:00
|
|
|
let
|
2009-10-06 01:15:06 +02:00
|
|
|
|
2013-10-23 19:32:19 +02:00
|
|
|
# Remove invisible and internal options.
|
|
|
|
options' = filter (opt: opt.visible && !opt.internal) (optionAttrSetToDocList options);
|
|
|
|
|
|
|
|
# Clean up declaration sites to not refer to the NixOS source tree.
|
|
|
|
options'' = flip map options' (opt: opt // {
|
|
|
|
declarations = map (fn: stripPrefix fn) opt.declarations;
|
|
|
|
});
|
|
|
|
|
2014-06-13 16:46:59 +02:00
|
|
|
prefix = toString ../../..;
|
2013-10-23 20:06:17 +02:00
|
|
|
|
2013-10-23 19:32:19 +02:00
|
|
|
stripPrefix = fn:
|
|
|
|
if substring 0 (stringLength prefix) fn == prefix then
|
2014-06-13 16:46:59 +02:00
|
|
|
substring (stringLength prefix + 1) 1000 fn
|
2013-10-23 19:32:19 +02:00
|
|
|
else
|
|
|
|
fn;
|
|
|
|
|
|
|
|
optionsXML = builtins.toFile "options.xml" (builtins.unsafeDiscardStringContext (builtins.toXML options''));
|
2008-01-04 15:24:42 +01:00
|
|
|
|
|
|
|
optionsDocBook = pkgs.runCommand "options-db.xml" {} ''
|
2013-10-23 20:06:17 +02:00
|
|
|
if grep /nixpkgs/nixos/modules ${optionsXML}; then
|
|
|
|
echo "The manual appears to depend on the location of Nixpkgs, which is bad"
|
|
|
|
echo "since this prevents sharing via the NixOS channel. This is typically"
|
|
|
|
echo "caused by an option default that refers to a relative path (see above"
|
|
|
|
echo "for hints about the offending path)."
|
|
|
|
exit 1
|
|
|
|
fi
|
2009-10-06 01:47:50 +02:00
|
|
|
${pkgs.libxslt}/bin/xsltproc \
|
|
|
|
--stringparam revision '${revision}' \
|
|
|
|
-o $out ${./options-to-docbook.xsl} ${optionsXML}
|
2008-01-04 15:24:42 +01:00
|
|
|
'';
|
2009-09-18 17:10:37 +02:00
|
|
|
|
2010-08-11 14:28:53 +02:00
|
|
|
in rec {
|
|
|
|
|
|
|
|
# Generate the NixOS manual.
|
2008-01-04 15:24:42 +01:00
|
|
|
manual = pkgs.stdenv.mkDerivation {
|
|
|
|
name = "nixos-manual";
|
|
|
|
|
2013-10-17 14:09:05 +02:00
|
|
|
sources = sourceFilesBySuffices ./. [".xml"];
|
2008-01-04 15:24:42 +01:00
|
|
|
|
2010-08-11 14:28:53 +02:00
|
|
|
buildInputs = [ pkgs.libxml2 pkgs.libxslt ];
|
2008-01-04 15:24:42 +01: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 17:10:32 +02:00
|
|
|
ln -s $sources/*.xml . # */
|
2008-01-04 15:24:42 +01:00
|
|
|
ln -s ${optionsDocBook} options-db.xml
|
2013-11-01 16:44:03 +01:00
|
|
|
echo "${version}" > version
|
2009-07-14 17:47:03 +02:00
|
|
|
|
2009-10-05 15:17:45 +02: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 17:47:03 +02:00
|
|
|
dst=$out/share/doc/nixos
|
|
|
|
ensureDir $dst
|
2008-01-04 15:24:42 +01:00
|
|
|
xsltproc $xsltFlags --nonet --xinclude \
|
2009-10-06 01:15:06 +02:00
|
|
|
--output $dst/manual.html \
|
2009-06-05 19:16:42 +02:00
|
|
|
${pkgs.docbook5_xsl}/xml/xsl/docbook/xhtml/docbook.xsl \
|
2008-01-04 15:24:42 +01:00
|
|
|
./manual.xml
|
2009-09-18 17:10:37 +02:00
|
|
|
|
2012-07-25 17:54:24 +02:00
|
|
|
mkdir -p $dst/images/callouts
|
|
|
|
cp ${pkgs.docbook5_xsl}/xml/xsl/docbook/images/callouts/*.gif $dst/images/callouts/
|
2013-01-09 13:43:57 +01:00
|
|
|
|
2009-07-14 17:47:03 +02:00
|
|
|
cp ${./style.css} $dst/style.css
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2013-10-24 20:06:02 +02:00
|
|
|
mkdir -p $out/nix-support
|
|
|
|
echo "nix-build out $out" >> $out/nix-support/hydra-build-products
|
2010-08-11 14:28:53 +02:00
|
|
|
echo "doc manual $dst manual.html" >> $out/nix-support/hydra-build-products
|
2012-07-25 17:54:24 +02:00
|
|
|
''; # */
|
2013-10-24 20:06:02 +02:00
|
|
|
|
|
|
|
meta.description = "The NixOS manual in HTML format";
|
2010-08-11 14:28:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# Generate the NixOS manpages.
|
|
|
|
manpages = pkgs.stdenv.mkDerivation {
|
|
|
|
name = "nixos-manpages";
|
|
|
|
|
2013-10-17 14:09:05 +02:00
|
|
|
sources = sourceFilesBySuffices ./. [".xml"];
|
2010-08-11 14:28:53 +02: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 17:47:03 +02:00
|
|
|
|
2009-10-05 15:17:45 +02:00
|
|
|
# Generate manpages.
|
2013-10-24 20:06:02 +02:00
|
|
|
mkdir -p $out/share/man
|
2009-07-14 17:47:03 +02:00
|
|
|
xsltproc --nonet --xinclude \
|
|
|
|
--param man.output.in.separate.dir 1 \
|
|
|
|
--param man.output.base.dir "'$out/share/man/'" \
|
2009-10-06 01:15:06 +02:00
|
|
|
--param man.endnotes.are.numbered 0 \
|
2009-07-14 17:47:03 +02:00
|
|
|
${pkgs.docbook5_xsl}/xml/xsl/docbook/manpages/docbook.xsl \
|
|
|
|
./man-pages.xml
|
2008-01-04 15:24:42 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2011-09-14 20:20:50 +02:00
|
|
|
}
|