mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
import cran: Do not use "or later" licenses by default.
* guix/import/cran.scm (string->license): Use exact license versions.
This commit is contained in:
parent
aaee461b9d
commit
13f54d081b
1 changed files with 5 additions and 5 deletions
|
@ -55,11 +55,11 @@ (define string->license
|
|||
("GPL" (list 'gpl2+ 'gpl3+))
|
||||
("GPL (>= 2)" 'gpl2+)
|
||||
("GPL (>= 3)" 'gpl3+)
|
||||
("GPL-2" 'gpl2+)
|
||||
("GPL-3" 'gpl3+)
|
||||
("LGPL-2" 'lgpl2.0+)
|
||||
("LGPL-2.1" 'lgpl2.1+)
|
||||
("LGPL-3" 'lgpl3+)
|
||||
("GPL-2" 'gpl2)
|
||||
("GPL-3" 'gpl3)
|
||||
("LGPL-2" 'lgpl2.0)
|
||||
("LGPL-2.1" 'lgpl2.1)
|
||||
("LGPL-3" 'lgpl3)
|
||||
("LGPL (>= 2)" 'lgpl2.0+)
|
||||
("LGPL (>= 3)" 'lgpl3+)
|
||||
("MIT" 'x11)
|
||||
|
|
Loading…
Reference in a new issue