mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
import: cran: Recognize LGPL 2.1+.
* guix/import/cran.scm (string->license): Add case for lgpl2.1+.
This commit is contained in:
parent
5c0b5b8ad7
commit
e31ec53ed8
1 changed files with 1 additions and 0 deletions
|
@ -82,6 +82,7 @@ (define string->license
|
|||
("LGPL-2.1" 'lgpl2.1)
|
||||
("LGPL-3" 'lgpl3)
|
||||
("LGPL (>= 2)" 'lgpl2.0+)
|
||||
("LGPL (>= 2.1)" 'lgpl2.1+)
|
||||
("LGPL (>= 3)" 'lgpl3+)
|
||||
("MIT" 'expat)
|
||||
("MIT + file LICENSE" 'expat)
|
||||
|
|
Loading…
Reference in a new issue