Add URL field to JSON builds

This commit is contained in:
Alex 2022-02-05 14:15:22 +01:00 committed by Quentin Dufour
parent ecd76977ea
commit 241db1e1f5
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ let
parsed = map (entry: listToSet keys entry) elems;
subkeys = ["root" "version" "platform" "binary" ];
builds = map (entry: entry // listToSet subkeys (lib.splitString "/" entry.path)) parsed;
builds = map (entry: entry // listToSet subkeys (lib.splitString "/" entry.path) // { url = "https://garagehq.deuxfleurs.fr/" + entry.path; }) parsed;
/* Aggregation */
builds_per_version = lib.foldl (acc: v: acc // { ${v.version} = if builtins.hasAttr v.version acc then acc.${v.version} ++ [ v ] else [ v ]; }) {} builds;