aboutsummaryrefslogtreecommitdiff
path: root/guix/packages.scm
diff options
context:
space:
mode:
authorjgart <jgart@dismail.de>2022-12-06 23:57:09 -0600
committerAndrew Tropin <andrew@trop.in>2022-12-19 15:26:41 +0400
commit061609ee57a201157a21d8d2c237f4f0be067bba (patch)
tree10db855cb0c9cae05b6b55aa6a0eed426be83537 /guix/packages.scm
parent77ef82ce93e088e3d810b394b7cacd33f0d2de85 (diff)
downloadguix-061609ee57a201157a21d8d2c237f4f0be067bba.tar
guix-061609ee57a201157a21d8d2c237f4f0be067bba.tar.gz
guix: packages: Add type hint comment to home-page record field.
* guix/packages.scm (package)[home-page]: Add type comment. Signed-off-by: Andrew Tropin <andrew@trop.in>
Diffstat (limited to 'guix/packages.scm')
-rw-r--r--guix/packages.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/packages.scm b/guix/packages.scm
index 6e61e16aa4..041a872f9d 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -8,6 +8,7 @@
;;; Copyright © 2020, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2021 Chris Marusich <cmmarusich@gmail.com>
;;; Copyright © 2022 Maxime Devos <maximedevos@telenet.be>
+;;; Copyright © 2022 jgart <jgart@dismail.de>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -610,7 +611,7 @@ Texinfo. Otherwise, return the string."
(sanitize validate-texinfo)) ; one or two paragraphs
(license package-license ; (list of) <license>
(sanitize validate-license))
- (home-page package-home-page)
+ (home-page package-home-page) ; string
(supported-systems package-supported-systems ; list of strings
(default %supported-systems))