2018-10-05 15:46:58 +01:00
|
|
|
{ pkgs ? (import ./.. { }), nixpkgs ? { }}:
|
2015-12-19 15:04:36 +00:00
|
|
|
let
|
2019-07-04 13:23:39 +01:00
|
|
|
doc-support = import ./doc-support { inherit pkgs nixpkgs; };
|
2023-06-24 20:39:20 +01:00
|
|
|
|
|
|
|
epub = pkgs.runCommand "manual.epub" {
|
|
|
|
nativeBuildInputs = with pkgs; [ libxslt zip ];
|
|
|
|
|
|
|
|
epub = ''
|
|
|
|
<book xmlns="http://docbook.org/ns/docbook"
|
|
|
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
|
|
version="5.0"
|
|
|
|
xml:id="nixpkgs-manual">
|
|
|
|
<info>
|
|
|
|
<title>Nixpkgs Manual</title>
|
|
|
|
<subtitle>Version ${pkgs.lib.version}</subtitle>
|
|
|
|
</info>
|
|
|
|
<chapter>
|
|
|
|
<title>Temporarily unavailable</title>
|
|
|
|
<para>
|
|
|
|
The Nixpkgs manual is currently not available in EPUB format,
|
|
|
|
please use the <link xlink:href="https://nixos.org/nixpkgs/manual">HTML manual</link>
|
|
|
|
instead.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
If you've used the EPUB manual in the past and it has been useful to you, please
|
|
|
|
<link xlink:href="https://github.com/NixOS/nixpkgs/issues/237234">let us know</link>.
|
|
|
|
</para>
|
|
|
|
</chapter>
|
|
|
|
</book>
|
|
|
|
'';
|
|
|
|
|
|
|
|
passAsFile = [ "epub" ];
|
|
|
|
} ''
|
|
|
|
mkdir scratch
|
|
|
|
xsltproc \
|
|
|
|
--param chapter.autolabel 0 \
|
|
|
|
--nonet \
|
|
|
|
--output scratch/ \
|
|
|
|
${pkgs.docbook_xsl_ns}/xml/xsl/docbook/epub/docbook.xsl \
|
|
|
|
$epubPath
|
|
|
|
|
|
|
|
echo "application/epub+zip" > mimetype
|
|
|
|
zip -0Xq "$out" mimetype
|
|
|
|
cd scratch && zip -Xr9D "$out" *
|
|
|
|
'';
|
2018-12-30 00:10:19 +00:00
|
|
|
in pkgs.stdenv.mkDerivation {
|
2014-08-24 10:02:23 +01:00
|
|
|
name = "nixpkgs-manual";
|
|
|
|
|
2020-12-05 12:47:29 +00:00
|
|
|
nativeBuildInputs = with pkgs; [
|
2023-03-25 20:38:26 +00:00
|
|
|
nixos-render-docs
|
2020-12-05 12:47:29 +00:00
|
|
|
];
|
2014-08-24 10:02:23 +01:00
|
|
|
|
2023-06-22 23:26:52 +01:00
|
|
|
src = ./.;
|
2018-03-24 15:36:10 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
2019-07-04 13:27:16 +01:00
|
|
|
ln -s ${doc-support} ./doc-support/result
|
2018-03-24 15:36:10 +00:00
|
|
|
'';
|
2014-08-24 10:02:23 +01:00
|
|
|
|
2023-03-25 20:38:26 +00:00
|
|
|
buildPhase = ''
|
|
|
|
cat \
|
|
|
|
./functions/library.md.in \
|
|
|
|
./doc-support/result/function-docs/index.md \
|
|
|
|
> ./functions/library.md
|
|
|
|
substitute ./manual.md.in ./manual.md \
|
|
|
|
--replace '@MANUAL_VERSION@' '${pkgs.lib.version}'
|
|
|
|
|
|
|
|
mkdir -p out/media
|
|
|
|
|
|
|
|
mkdir -p out/highlightjs
|
|
|
|
cp -t out/highlightjs \
|
|
|
|
${pkgs.documentation-highlighter}/highlight.pack.js \
|
|
|
|
${pkgs.documentation-highlighter}/LICENSE \
|
|
|
|
${pkgs.documentation-highlighter}/mono-blue.css \
|
|
|
|
${pkgs.documentation-highlighter}/loader.js
|
|
|
|
|
|
|
|
cp -t out ./overrides.css ./style.css
|
|
|
|
|
|
|
|
nixos-render-docs manual html \
|
|
|
|
--manpage-urls ./manpage-urls.json \
|
|
|
|
--revision ${pkgs.lib.trivial.revisionWithDefault (pkgs.rev or "master")} \
|
|
|
|
--stylesheet style.css \
|
|
|
|
--stylesheet overrides.css \
|
|
|
|
--stylesheet highlightjs/mono-blue.css \
|
|
|
|
--script ./highlightjs/highlight.pack.js \
|
|
|
|
--script ./highlightjs/loader.js \
|
|
|
|
--toc-depth 1 \
|
|
|
|
--section-toc-depth 1 \
|
|
|
|
manual.md \
|
|
|
|
out/index.html
|
2023-04-25 13:37:50 +01:00
|
|
|
'';
|
|
|
|
|
2018-03-24 15:36:10 +00:00
|
|
|
installPhase = ''
|
|
|
|
dest="$out/share/doc/nixpkgs"
|
|
|
|
mkdir -p "$(dirname "$dest")"
|
2023-03-25 20:38:26 +00:00
|
|
|
mv out "$dest"
|
2018-03-24 15:36:10 +00:00
|
|
|
mv "$dest/index.html" "$dest/manual.html"
|
2016-07-20 16:57:31 +01:00
|
|
|
|
2023-06-24 20:39:20 +01:00
|
|
|
cp ${epub} "$dest/nixpkgs-manual.epub"
|
2016-07-20 16:57:31 +01:00
|
|
|
|
2018-03-24 15:36:10 +00:00
|
|
|
mkdir -p $out/nix-support/
|
|
|
|
echo "doc manual $dest manual.html" >> $out/nix-support/hydra-build-products
|
2018-06-06 21:36:17 +01:00
|
|
|
echo "doc manual $dest nixpkgs-manual.epub" >> $out/nix-support/hydra-build-products
|
2014-08-24 10:02:23 +01:00
|
|
|
'';
|
|
|
|
}
|