diff options
author | jgart <jgart@dismail.de> | 2021-11-13 01:27:15 -0500 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2021-11-13 09:52:19 +0100 |
commit | 193d7b5b450d2004c26720e488a9cce930542e9e (patch) | |
tree | c3f922a68373d1a5583f2144807a9158e6bb3a7c /guix/packages.scm | |
parent | f116b4764baa2eaaad4c83e1aa6de45a6bf412a6 (diff) |
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.scm | 2 |
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)) |