diff mbox series

[bug#51802] guix: packages: Clarify that list is a list of license instances.

Message ID 20211113062715.12831-1-jgart@dismail.de
State Accepted
Headers show
Series [bug#51802] guix: packages: Clarify that list is a list of license instances. | expand

Checks

Context Check Description
cbaines/comparison success View comparision
cbaines/git branch success View Git branch
cbaines/applying patch success View Laminar job
cbaines/issue success View issue

Commit Message

jgart Nov. 13, 2021, 6:27 a.m. UTC
* guix/packages/packages.scm (<package>): Clarify that the license
field that is part of the package record can take a a list of
license instances.
---
 guix/packages.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Liliana Marie Prikler Nov. 13, 2021, 9 a.m. UTC | #1
Hi,

I've pushed your patch with the following changes:
> -  (license package-license)                       ; <license> instance or list
> +  (license package-license)                       ; <license> instance or list thereof
Kept within the character limit of 80.

> * guix/packages/packages.scm (<package>): Clarify that the license
> field that is part of the package record can take a a list of
> license instances.
Adjusted accordingly.

Thanks
jgart Nov. 13, 2021, 5:19 p.m. UTC | #2
On Sat, 13 Nov 2021 10:00:00 +0100 Liliana Marie Prikler <liliana.prikler@gmail.com> wrote:
> Hi,
> 
> I've pushed your patch with the following changes:
> > -  (license package-license)                       ; <license> instance or list
> > +  (license package-license)                       ; <license> instance or list thereof
> Kept within the character limit of 80.
> 
> > * guix/packages/packages.scm (<package>): Clarify that the license
> > field that is part of the package record can take a a list of
> > license instances.
> Adjusted accordingly.
> 
> Thanks

Thank you Liliana. Much appreciated!

all best,

jgart
diff mbox series

Patch

diff --git a/guix/packages.scm b/guix/packages.scm
index 4b6098bb8d..1fd500b2b6 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -520,7 +520,7 @@  (define-record-type* <package>
             (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)                       ; <license> instance or list thereof
   (home-page package-home-page)
   (supported-systems package-supported-systems    ; list of strings
                      (default %supported-systems))