Make the revision derivation counts numbers

This commit is contained in:
Christopher Baines 2022-01-22 18:47:38 +00:00
parent cbef46e682
commit 11ec8a8064

View file

@ -63,4 +63,10 @@ WHERE package_derivations.id IN (
GROUP BY systems.system, package_derivations.target
ORDER BY systems.system DESC, package_derivations.target ASC")
(exec-query conn query (list commit-hash)))
(map
(match-lambda
((system target count)
(list system
target
(string->number count))))
(exec-query conn query (list commit-hash))))