diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-06-13 14:45:40 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-06-14 14:09:35 +0200 |
commit | 4699de59ff7c2904a8aed4b7d7cbd96178946d68 (patch) | |
tree | f0be9c618f083ffe084dce676948cd4f72c1fdf0 | |
parent | 706bf5f0c26c20eda69c9808c7b52c4d8a3e45d4 (diff) | |
download | guix-4699de59ff7c2904a8aed4b7d7cbd96178946d68.tar.gz guix-4699de59ff7c2904a8aed4b7d7cbd96178946d68.zip |
import/cran: Add another clause for ASL 2.0.
* guix/import/cran.scm (string->license): Add clause for >= 2.0.
-rw-r--r-- | guix/import/cran.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/import/cran.scm b/guix/import/cran.scm index 59ed65d929..18a1396cf5 100644 --- a/guix/import/cran.scm +++ b/guix/import/cran.scm @@ -95,7 +95,8 @@ ("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)) |