import/cran: Add another clause for ASL 2.0.

* guix/import/cran.scm (string->license): Add clause for >= 2.0.
This commit is contained in:
Ricardo Wurmus 2023-06-13 14:45:40 +02:00
parent 706bf5f0c2
commit 4699de59ff
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -95,7 +95,8 @@ (define (string->license license-string license-prefix)
("AGPL (>= 3)" (prefix 'agpl3+))
("Artistic-2.0" (prefix 'artistic2.0))
((or "Apache License 2.0"
"Apache License (== 2.0)")
"Apache License (== 2.0)"
"Apache License (>= 2.0)")
(prefix 'asl2.0))
("BSD_2_clause" (prefix 'bsd-2))
("BSD_2_clause + file LICENSE" (prefix 'bsd-2))