import cran: Translate MIT to the Expat license.

* guix/import/cran.scm (string->license): Translate "MIT" license to
Expat license.
master
Ricardo Wurmus 2016-12-08 14:36:27 +01:00 committed by Ricardo Wurmus
parent 13f54d081b
commit 741d68c20d
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 2 additions and 2 deletions

View File

@ -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)))