import: cran: Recognize LGPL 2.1+.

* guix/import/cran.scm (string->license): Add case for lgpl2.1+.
This commit is contained in:
Ricardo Wurmus 2019-12-14 13:34:53 +01:00
parent 5c0b5b8ad7
commit e31ec53ed8
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -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)