forked from nixcloud/nixcloud-webservices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease.nix
67 lines (55 loc) · 2.15 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
{ system ? builtins.currentSystem, nixpkgs ? <nixpkgs> }:
let
pkgs = import nixpkgs { inherit system; };
inherit (pkgs) lib;
in {
tests = let
mkJob = lib.const lib.hydraJob;
mapHydra = lib.mapAttrsRecursiveCond (t: !(t ? test)) mkJob;
in mapHydra (import ./tests {
inherit system;
pkgs = import nixpkgs {};
});
manual = let
modules = import "${pkgs.path}/nixos/lib/eval-config.nix" {
modules = [ ./modules ];
check = false;
inherit system;
};
isNcOpt = opt: lib.head (lib.splitString "." opt.name) == "nixcloud";
filterDoc = lib.filter (opt: isNcOpt opt && opt.visible && !opt.internal);
filtered = filterDoc (lib.optionAttrSetToDocList modules.options);
# XXX: Instead of unsafe discard, let's actually strip the prefix someday.
optionsXML = builtins.unsafeDiscardStringContext (builtins.toXML filtered);
optionsFile = builtins.toFile "options.xml" optionsXML;
in pkgs.stdenv.mkDerivation {
name = "nixcloud-webservices-options";
nativeBuildInputs = [ pkgs.libxslt ];
buildCommand = ''
dest="$out/share/doc/nixcloud-webservices"
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 specific to nixcloud webservices</title>
<xi:include href="options-db.xml" />
</book>
XML
xsltproc -o options-db.xml \
"${pkgs.path}/nixos/doc/manual/options-to-docbook.xsl" \
${lib.escapeShellArg optionsFile}
xsltproc -o "$dest/index.html" -nonet -xinclude \
--param section.autolabel 1 \
--param section.label.includes.component.label 1 \
--stringparam html.stylesheet style.css \
--param xref.with.number.and.title 1 \
--stringparam admon.style "" \
${pkgs.docbook5_xsl}/xml/xsl/docbook/xhtml/docbook.xsl \
manual.xml
cp "${pkgs.path}/nixos/doc/manual/style.css" "$dest/style.css"
mkdir -p "$out/nix-support"
echo "doc manual $dest" > "$out/nix-support/hydra-build-products"
'';
};
}