aboutsummaryrefslogtreecommitdiff
path: root/guix/packages.scm
diff options
context:
space:
mode:
authorjgart <jgart@dismail.de>2021-11-13 01:27:15 -0500
committerLiliana Marie Prikler <liliana.prikler@gmail.com>2021-11-13 09:52:19 +0100
commit193d7b5b450d2004c26720e488a9cce930542e9e (patch)
treec3f922a68373d1a5583f2144807a9158e6bb3a7c /guix/packages.scm
parentf116b4764baa2eaaad4c83e1aa6de45a6bf412a6 (diff)
downloadguix-193d7b5b450d2004c26720e488a9cce930542e9e.tar
guix-193d7b5b450d2004c26720e488a9cce930542e9e.tar.gz
guix: packages: Clarify that list is a list of <license> records.
* guix/packages/packages.scm (<package>): Clarify that the license field takes a list of licenses rather than a generic list. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'guix/packages.scm')
-rw-r--r--guix/packages.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/packages.scm b/guix/packages.scm
index 4b6098bb8d..a3602a3d7a 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -520,7 +520,7 @@ Texinfo. Otherwise, return the string."
(sanitize validate-texinfo)) ; one-line description
(description package-description
(sanitize validate-texinfo)) ; one or two paragraphs
- (license package-license) ; <license> instance or list
+ (license package-license) ; (list of) <license>
(home-page package-home-page)
(supported-systems package-supported-systems ; list of strings
(default %supported-systems))