diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2016-12-08 14:36:27 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-12-17 15:56:47 +0100 |
commit | 741d68c20d1910252f34441c3df65a6f35771673 (patch) | |
tree | 27b896688dcbbd6a975abe120be5e0cf47d5bbf5 /guix | |
parent | 13f54d081b6922c65f7cb369ad24071e78ebba54 (diff) | |
download | gnu-guix-741d68c20d1910252f34441c3df65a6f35771673.tar gnu-guix-741d68c20d1910252f34441c3df65a6f35771673.tar.gz |
import cran: Translate MIT to the Expat license.
* guix/import/cran.scm (string->license): Translate "MIT" license to
Expat license.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/import/cran.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/import/cran.scm b/guix/import/cran.scm index 13f5f82a45..549b11c392 100644 --- a/guix/import/cran.scm +++ b/guix/import/cran.scm @@ -62,8 +62,8 @@ ("LGPL-3" 'lgpl3) ("LGPL (>= 2)" 'lgpl2.0+) ("LGPL (>= 3)" 'lgpl3+) - ("MIT" 'x11) - ("MIT + file LICENSE" 'x11) + ("MIT" 'expat) + ("MIT + file LICENSE" 'expat) ((x) (string->license x)) ((lst ...) `(list ,@(map string->license lst))) (_ #f))) |