mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
import cran: Generate a valid 'license' field for "GPL".
Fixes <http://bugs.gnu.org/27294>. Reported by Joshua Sierles <joshua@joshua.si>. * guix/import/cran.scm (string->license) <"GPL">: Return a quoted list.
This commit is contained in:
parent
b74e2f610a
commit
94a400beba
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ (define string->license
|
|||
("BSD_2_clause + file LICENSE" 'bsd-2)
|
||||
("BSD_3_clause" 'bsd-3)
|
||||
("BSD_3_clause + file LICENSE" 'bsd-3)
|
||||
("GPL" (list 'gpl2+ 'gpl3+))
|
||||
("GPL" '(list gpl2+ gpl3+))
|
||||
("GPL (>= 2)" 'gpl2+)
|
||||
("GPL (>= 3)" 'gpl3+)
|
||||
("GPL-2" 'gpl2)
|
||||
|
|
Loading…
Reference in a new issue