This is an automated email from the git hooks/post-receive script.
nckx pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 886d044 guix: packages: Add comment on license field.
886d044 is described below
commit 886d04425e5a087816979b8a96b1e706693b5f93
Author: jgart via Guix-patches via <[email protected]>
AuthorDate: Thu Oct 21 17:40:55 2021 -0400
guix: packages: Add comment on license field.
* guix/packages/packages.scm (<package>): Add comment about the type
that the license field expects as part of a package record.
Signed-off-by: Tobias Geerinckx-Rice <[email protected]>
---
guix/packages.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/packages.scm b/guix/packages.scm
index 8c3a0b0..e5a9d08 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -473,7 +473,7 @@ lexical scope of its body."
(synopsis package-synopsis) ; one-line description
(description package-description) ; one or two paragraphs
- (license package-license)
+ (license package-license) ; <license> instance or list
(home-page package-home-page)
(supported-systems package-supported-systems ; list of strings
(default %supported-systems))