From 4699de59ff7c2904a8aed4b7d7cbd96178946d68 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 13 Jun 2023 14:45:40 +0200 Subject: [PATCH] import/cran: Add another clause for ASL 2.0. * guix/import/cran.scm (string->license): Add clause for >= 2.0. --- guix/import/cran.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 @@ (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))