diff options
Diffstat (limited to 'nix/build_index.nix')
-rw-r--r-- | nix/build_index.nix | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/nix/build_index.nix b/nix/build_index.nix index a0313a9e..4625e3ae 100644 --- a/nix/build_index.nix +++ b/nix/build_index.nix @@ -88,10 +88,8 @@ let builds = builtins.sort cmpDate (map (x: { version = x; builds = builtins.getAttr x builds_per_version; }) versions_commit); } ]; -in -{ - json = pkgs.writeTextDir "share/_releases.json" (builtins.toJSON sorted_builds); + json = pkgs.writeTextDir "share/_releases.json" (builtins.toJSON sorted_builds); html = pkgs.writeTextDir "share/_releases.html" '' <!doctype html> <html> @@ -146,4 +144,8 @@ in </body> </html> ''; -} +in + pkgs.symlinkJoin { + name = "releases"; + paths = [ json html ]; + } |