me
/
guix
Archived
1
0
Fork 0

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>
jgart 2022-12-06 23:57:09 -06:00 committed by Andrew Tropin
parent 77ef82ce93
commit 061609ee57
No known key found for this signature in database
GPG Key ID: 2208D20958C1DEB0
1 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@
;;; Copyright © 2020, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2020, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2021 Chris Marusich <cmmarusich@gmail.com> ;;; Copyright © 2021 Chris Marusich <cmmarusich@gmail.com>
;;; Copyright © 2022 Maxime Devos <maximedevos@telenet.be> ;;; Copyright © 2022 Maxime Devos <maximedevos@telenet.be>
;;; Copyright © 2022 jgart <jgart@dismail.de>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -610,7 +611,7 @@ Texinfo. Otherwise, return the string."
(sanitize validate-texinfo)) ; one or two paragraphs (sanitize validate-texinfo)) ; one or two paragraphs
(license package-license ; (list of) <license> (license package-license ; (list of) <license>
(sanitize validate-license)) (sanitize validate-license))
(home-page package-home-page) (home-page package-home-page) ; string
(supported-systems package-supported-systems ; list of strings (supported-systems package-supported-systems ; list of strings
(default %supported-systems)) (default %supported-systems))