diff options
-rw-r--r-- | guix-data-service/web/view/html.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/guix-data-service/web/view/html.scm b/guix-data-service/web/view/html.scm index ea5641a..5f14722 100644 --- a/guix-data-service/web/view/html.scm +++ b/guix-data-service/web/view/html.scm @@ -628,7 +628,13 @@ ,(simple-format #f "(\"~A\",\"" output-name) (a (@ (href ,path)) ,(display-store-item path)) - "\")" + "\"," + ,(string-append (if (peek recursive?) "\"r:" "\"") + hash-algorithm) + "\"" + "," + "\"" ,hash "\"" + ")" ,@(if (eq? count-down 0) '() '(","))))) |