diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2016-12-08 14:37:32 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-12-17 15:56:47 +0100 |
commit | 576eda6d02c65cbbbd611691abb5f5ee9511afc6 (patch) | |
tree | a66729f79bee281d7c736061d12834d55f59f4b9 | |
parent | 741d68c20d1910252f34441c3df65a6f35771673 (diff) | |
download | guix-576eda6d02c65cbbbd611691abb5f5ee9511afc6.tar guix-576eda6d02c65cbbbd611691abb5f5ee9511afc6.tar.gz |
import cran: Handle BSD licenses with LICENSE file.
* guix/import/cran.scm (string->license): Add cases for BSD licenses
with LICENSE file.
-rw-r--r-- | guix/import/cran.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/import/cran.scm b/guix/import/cran.scm index 549b11c392..d2add6f633 100644 --- a/guix/import/cran.scm +++ b/guix/import/cran.scm @@ -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+) |