2015-12-19 16:04:36 +01:00
|
|
|
let
|
2016-07-20 17:57:31 +02:00
|
|
|
pkgs = import ./.. { };
|
|
|
|
lib = pkgs.lib;
|
|
|
|
sources = lib.sourceFilesBySuffices ./. [".xml"];
|
2015-12-19 16:04:36 +01:00
|
|
|
sources-langs = ./languages-frameworks;
|
|
|
|
in
|
2016-07-20 17:57:31 +02:00
|
|
|
pkgs.stdenv.mkDerivation {
|
2014-08-24 11:02:23 +02:00
|
|
|
name = "nixpkgs-manual";
|
|
|
|
|
2018-03-25 04:22:38 +02:00
|
|
|
buildInputs = with pkgs; [ pandoc libxml2 libxslt zip jing ];
|
2014-08-24 11:02:23 +02:00
|
|
|
|
2018-03-24 16:36:10 +01:00
|
|
|
src = ./.;
|
|
|
|
|
|
|
|
XSL = "${pkgs.docbook5_xsl}/xml/xsl";
|
|
|
|
RNG = "${pkgs.docbook5}/xml/rng/docbook/docbook.rng";
|
|
|
|
xsltFlags = lib.concatStringsSep " " [
|
|
|
|
"--param section.autolabel 1"
|
|
|
|
"--param section.label.includes.component.label 1"
|
2018-03-26 20:45:00 +02:00
|
|
|
"--stringparam html.stylesheet 'style.css overrides.css'"
|
2018-03-24 16:36:10 +01:00
|
|
|
"--param xref.with.number.and.title 1"
|
|
|
|
"--param toc.section.depth 3"
|
2018-03-26 20:04:19 +02:00
|
|
|
"--stringparam admon.style ''"
|
|
|
|
"--stringparam callout.graphics.extension .svg"
|
2018-03-24 16:36:10 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
2016-07-20 17:57:31 +02:00
|
|
|
echo ${lib.nixpkgsVersion} > .version
|
2018-03-24 16:36:10 +01:00
|
|
|
'';
|
2014-08-24 11:02:23 +02:00
|
|
|
|
2018-03-24 16:36:10 +01:00
|
|
|
installPhase = ''
|
|
|
|
dest="$out/share/doc/nixpkgs"
|
|
|
|
mkdir -p "$(dirname "$dest")"
|
|
|
|
mv out/html "$dest"
|
|
|
|
mv "$dest/index.html" "$dest/manual.html"
|
2016-07-20 17:57:31 +02:00
|
|
|
|
2018-03-24 16:36:10 +01:00
|
|
|
mv out/epub/manual.epub "$dest/nixpkgs-manual.epub"
|
2016-07-20 17:57:31 +02:00
|
|
|
|
2018-03-24 16:36:10 +01:00
|
|
|
mkdir -p $out/nix-support/
|
|
|
|
echo "doc manual $dest manual.html" >> $out/nix-support/hydra-build-products
|
2014-08-24 11:02:23 +02:00
|
|
|
'';
|
|
|
|
}
|