Generate JSON build description

This commit is contained in:
Quentin 2022-01-31 11:59:14 +01:00
parent 935670690f
commit ecd76977ea
1 changed files with 6 additions and 3 deletions

View File

@ -88,9 +88,11 @@ let
builds = builtins.sort cmpDate (map (x: { version = x; builds = builtins.getAttr x builds_per_version; }) versions_commit);
}
];
in
pkgs.writeText "index.html" ''
{
json = pkgs.writeTextDir "share/_releases.json" (builtins.toJSON sorted_builds);
html = pkgs.writeTextDir "share/_releases.html" ''
<!doctype html>
<html>
<head>
@ -143,4 +145,5 @@ in
''))}
</body>
</html>
''
'';
}