mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
guix: import: Fix Creative Common licenses in texlive importer.
* guix/import/texlive.scm (string->license): Fix symbol used for some CC-BY licenses. Add version 4.0 for CC-BY and CC-BY-SA.
This commit is contained in:
parent
68d9c5da48
commit
a91171ad63
1 changed files with 4 additions and 2 deletions
|
@ -90,10 +90,12 @@ (define string->license
|
|||
("lppl1.3a" 'lppl1.3a)
|
||||
("lppl1.3b" 'lppl1.3b)
|
||||
("lppl1.3c" 'lppl1.3c)
|
||||
("cc-by-2" 'cc-by-2.0)
|
||||
("cc-by-3" 'cc-by-3.0)
|
||||
("cc-by-2" 'cc-by2.0)
|
||||
("cc-by-3" 'cc-by3.0)
|
||||
("cc-by-4" 'cc-by4.0)
|
||||
("cc-by-sa-2" 'cc-by-sa2.0)
|
||||
("cc-by-sa-3" 'cc-by-sa3.0)
|
||||
("cc-by-sa-4" 'cc-by-sa4.0)
|
||||
("mit" 'expat)
|
||||
("fdl" 'fdl1.3+)
|
||||
("gfl" 'gfl1.0)
|
||||
|
|
Loading…
Reference in a new issue