import cran: Handle BSD licenses with LICENSE file.

* guix/import/cran.scm (string->license): Add cases for BSD licenses
with LICENSE file.
master
Ricardo Wurmus 2016-12-08 14:37:32 +01:00 committed by Ricardo Wurmus
parent 741d68c20d
commit 576eda6d02
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 2 additions and 0 deletions

View File

@ -51,7 +51,9 @@
("Artistic-2.0" 'artistic2.0)
("Apache License 2.0" 'asl2.0)
("BSD_2_clause" 'bsd-2)
("BSD_2_clause + file LICENSE" 'bsd-2)
("BSD_3_clause" 'bsd-3)
("BSD_3_clause + file LICENSE" 'bsd-3)
("GPL" (list 'gpl2+ 'gpl3+))
("GPL (>= 2)" 'gpl2+)
("GPL (>= 3)" 'gpl3+)