diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-06-02 12:52:22 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-06-02 12:52:22 +0200 |
commit | c2f0ce73a72777c182cdaf0d930bfd48a869a5cd (patch) | |
tree | 7995d7311e9e7827a0a7746dd9c54e090813d924 /guix/import/cran.scm | |
parent | 4f7efc8db91565f5f63f986931b641f8bb41fe50 (diff) |
import/cran: string->license: Add another case for GPLv3+.
* guix/import/cran.scm (string->license): Translate "GPL (>=3)" to gpl3+.
Diffstat (limited to 'guix/import/cran.scm')
-rw-r--r-- | guix/import/cran.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/import/cran.scm b/guix/import/cran.scm index e8bfa1b916..d21acda22b 100644 --- a/guix/import/cran.scm +++ b/guix/import/cran.scm @@ -113,6 +113,7 @@ ((or "GPL (> 2)" "GPL (>= 3)" "GPL (>= 3.0)" + "GPL (>=3)" "GNU General Public License (>= 3)") (prefix 'gpl3+)) ((or "GPL-2" |