[bug#78109,Cuirass,1/3] parameters: Add %guix-mirror-url.
Commit Message
* src/cuirass/parameters.scm (%guix-mirror-url): New variable.
---
src/cuirass/parameters.scm | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
base-commit: 91549453f00466e3778a1ceb191de11f5c94ef84
@@ -32,7 +32,9 @@
%mastodon-instance-url
%mastodon-instance-token
- %forgejo-notification-type))
+ %forgejo-notification-type
+
+ %guix-mirror-url))
;; This variable is looked up by 'mu-message-send'.
(define-public mu-debug 0)
@@ -78,3 +80,7 @@
;; The type of notification to send to a Forgejo server.
(define %forgejo-notification-type
(make-parameter 'create-review))
+
+;; The URL of a Guix mirror.
+(define %guix-mirror-url
+ (make-parameter #f))