summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorjgart via Guix-patches via <guix-patches@gnu.org>2021-10-21 17:40:55 -0400
committerTobias Geerinckx-Rice <me@tobias.gr>2021-10-22 00:04:47 +0200
commit886d04425e5a087816979b8a96b1e706693b5f93 (patch)
tree156573277773552c0ba33d6883123e2fdd64bb2b /guix
parent980146637ceed18e1d72900ea95bc61a8367d7fa (diff)
downloadguix-patches-886d04425e5a087816979b8a96b1e706693b5f93.tar
guix-patches-886d04425e5a087816979b8a96b1e706693b5f93.tar.gz
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 <me@tobias.gr>
Diffstat (limited to 'guix')
-rw-r--r--guix/packages.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/packages.scm b/guix/packages.scm
index 8c3a0b0b7b..e5a9d08bce 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))