1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-13 20:44:52 +03:00
mobile-nixos/doc/default.nix
2019-11-15 22:02:10 -05:00

52 lines
1.1 KiB
Nix

{
pkgs ? import ./pkgs.nix
}:
let
inherit (pkgs) stdenv mobile-nixos-process-doc rsync;
# Styles, built from a preprocessor.
styles = pkgs.callPackage ./_support/styles { };
# Asciidoc source for the devices section.
devices = pkgs.callPackage ./_support/devices { };
in
stdenv.mkDerivation {
name = "mobile-nixos-docs";
src = ./.;
buildInputs = [
mobile-nixos-process-doc
rsync
];
buildPhase = ''
# Removes the internal notes.
rm -f README.md
# Replace it in-place with the repo README.
cat >> README.adoc <<EOF
README.adoc
===========
include::_support/common.inc[]
:relative_file_path: README.adoc
EOF
tail -n +3 ${../README.adoc} >> README.adoc
# Copies the generated asciidoc source for the devices.
cp -prf ${devices}/devices devices
# Use our pipeline to process the docs.
process-doc "**/*.adoc" "**/*.md" \
--styles-dir="${styles}" \
--output-dir="$out"
rsync --prune-empty-dirs --verbose --archive --include="*.jpeg" --include="*/" --exclude="*" . $out/
'';
dontInstall = true;
}