mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
import/cran: string->license: Add another case for GPLv3+.
* guix/import/cran.scm (string->license): Translate "GPL (>=3)" to gpl3+.
This commit is contained in:
parent
4f7efc8db9
commit
c2f0ce73a7
1 changed files with 1 additions and 0 deletions
|
@ -113,6 +113,7 @@ (define (string->license license-string license-prefix)
|
|||
((or "GPL (> 2)"
|
||||
"GPL (>= 3)"
|
||||
"GPL (>= 3.0)"
|
||||
"GPL (>=3)"
|
||||
"GNU General Public License (>= 3)")
|
||||
(prefix 'gpl3+))
|
||||
((or "GPL-2"
|
||||
|
|
Loading…
Reference in a new issue