aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2024-01-24 17:47:06 +0100
committerW. Kosior <koszko@koszko.org>2024-05-03 14:46:43 +0200
commit925ef279aedc288b11df56de79bc9c31e1ec90c5 (patch)
tree3dc03fe369ddcc5db1bec8ca27859448973f4426 /gnu
parent426883e6732ebe7b60546c1c9297d7d61a144476 (diff)
downloadguix-925ef279aedc288b11df56de79bc9c31e1ec90c5.tar.gz
guix-925ef279aedc288b11df56de79bc9c31e1ec90c5.zip
services: Allow cgit footer text to be passed as a file-like object.
* gnu/services/cgit.scm (cgit-configuration)[footer]: Specify type as `file-object`. Change-Id: Id5790bbdb5e09204b653bc54e1b9b60afe5a2ee0
Diffstat (limited to 'gnu')
-rw-r--r--gnu/services/cgit.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/cgit.scm b/gnu/services/cgit.scm
index 1ef5547ee5..b8f4f23ec4 100644
--- a/gnu/services/cgit.scm
+++ b/gnu/services/cgit.scm
@@ -465,7 +465,7 @@ set any repo specific settings.")
(file-object "/favicon.ico")
"URL used as link to a shortcut icon for cgit.")
(footer
- (string "")
+ (file-object "")
"The content of the file specified with this option will be included
verbatim at the bottom of all pages (i.e. it replaces the standard
\"generated by...\" message).")