diff options
| author | Arun Isaac | 2026-08-04 01:29:20 +0100 |
|---|---|---|
| committer | Arun Isaac | 2026-08-04 13:24:54 +0100 |
| commit | fc94719159a2fa13bde3557157ed89892e7a8af7 (patch) | |
| tree | d4ec5f694683db70e15986331129f202fd5ed531 /guix | |
| parent | 685db9d6fd90b76a8314a21328217039932b6070 (diff) | |
| download | guix-forge-fc94719159a2fa13bde3557157ed89892e7a8af7.tar.gz guix-forge-fc94719159a2fa13bde3557157ed89892e7a8af7.tar.lz guix-forge-fc94719159a2fa13bde3557157ed89892e7a8af7.zip | |
cgit: Explain why about-filter and source-filter are thunked.
Diffstat (limited to 'guix')
| -rw-r--r-- | guix/forge/cgit.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/guix/forge/cgit.scm b/guix/forge/cgit.scm index 529d4a6..ba90248 100644 --- a/guix/forge/cgit.scm +++ b/guix/forge/cgit.scm @@ -109,6 +109,8 @@ (about-filter cgit-configuration-about-filter (default (program-file "about-filter" (about-filter-gexp this-cgit-configuration))) + ;; thunked so that value can reference the cgit package in + ;; configuration (thunked)) (commit-filter cgit-configuration-commit-filter (default #f)) @@ -117,6 +119,8 @@ (source-filter cgit-configuration-source-filter (default (program-file "cgit-chroma-syntax-highlight" %cgit-chroma-syntax-highlight-gexp)) + ;; thunked so that value can reference the cgit package in + ;; configuration (thunked)) (mimetype-file cgit-configuration-mimetype-file (default (file-append mailcap "/etc/mime.types"))) |
