-
Notifications
You must be signed in to change notification settings - Fork 15
/
release.nix
84 lines (69 loc) · 2.71 KB
/
release.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{ nixpkgs ? <nixpkgs> }:
let
pkgs = import nixpkgs {};
inherit (pkgs) lib;
jobs = {
tests = import ./tests { inherit nixpkgs pkgs; };
manual = let
modules = import "${nixpkgs}/nixos/lib/eval-config.nix" {
modules = [ ./. ];
check = false;
};
isHOpt = opt: lib.head (lib.splitString "." opt.name) == "shabitica";
filterDoc = lib.filter (opt: isHOpt opt && opt.visible && !opt.internal);
filtered = filterDoc (lib.optionAttrSetToDocList modules.options);
optsXML = builtins.unsafeDiscardStringContext (builtins.toXML filtered);
optsFile = builtins.toFile "options.xml" optsXML;
nixosVersion = builtins.readFile "${nixpkgs}/.version";
xsltPath = if pkgs ? nixosOptionsDoc
then "${nixpkgs}/nixos/lib/make-options-doc"
else "${nixpkgs}/nixos/doc/manual";
in pkgs.stdenv.mkDerivation {
name = "shabitica-options-manual";
nativeBuildInputs = [ pkgs.libxslt ];
styleSheets = [
"style.css" "overrides.css" "highlightjs/mono-blue.css"
];
buildCommand = ''
dest="$out/share/doc/shabitica"
mkdir -p "$dest"
cat > manual.xml <<XML
<book xmlns="http://docbook.org/ns/docbook"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude">
<title>NixOS options for Shabitica</title>
<xi:include href="options-db.xml" />
</book>
XML
xsltproc -o intermediate.xml \
"${xsltPath}/options-to-docbook.xsl" \
${lib.escapeShellArg optsFile}
xsltproc -o options-db.xml \
"${xsltPath}/postprocess-option-descriptions.xsl" \
intermediate.xml
xsltproc -o "$dest/index.html" -nonet -xinclude \
--param section.autolabel 1 \
--param section.label.includes.component.label 1 \
--stringparam html.stylesheet \
'style.css overrides.css highlightjs/mono-blue.css' \
--stringparam html.script \
'highlightjs/highlight.pack.js highlightjs/loader.js' \
--param xref.with.number.and.title 1 \
--stringparam admon.style "" \
${pkgs.docbook5_xsl}/xml/xsl/docbook/xhtml/docbook.xsl \
manual.xml
cp "${nixpkgs}/doc/style.css" "$dest/style.css"
cp "${nixpkgs}/doc/overrides.css" "$dest/overrides.css"
cp -r ${pkgs.documentation-highlighter} "$dest/highlightjs"
mkdir -p "$out/nix-support"
echo "doc manual $dest" > "$out/nix-support/hydra-build-products"
'';
};
};
in jobs // {
shabitica = pkgs.releaseTools.channel {
name = "shabitica";
constituents = lib.collect lib.isDerivation jobs;
src = ./.;
};
}