diff options
author | jgart via Guix-patches via <guix-patches@gnu.org> | 2021-10-21 17:40:55 -0400 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-22 00:04:47 +0200 |
commit | 886d04425e5a087816979b8a96b1e706693b5f93 (patch) | |
tree | 156573277773552c0ba33d6883123e2fdd64bb2b | |
parent | 980146637ceed18e1d72900ea95bc61a8367d7fa (diff) | |
download | guix-886d04425e5a087816979b8a96b1e706693b5f93.tar.gz guix-886d04425e5a087816979b8a96b1e706693b5f93.zip |
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>
-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 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)) |