me
/
guix
Archived
1
0
Fork 0

guix: import: texlive importer handles more licenses.

* guix/import/texlive.scm (string->license): Handle CC0 and ISC licenses.
Nicolas Goaziou 2023-07-12 12:16:39 +02:00
parent 765c92c27a
commit 75677daa83
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 2 additions and 0 deletions

View File

@ -93,6 +93,7 @@
("lppl1.3a" 'lppl1.3a) ("lppl1.3a" 'lppl1.3a)
("lppl1.3b" 'lppl1.3b) ("lppl1.3b" 'lppl1.3b)
("lppl1.3c" 'lppl1.3c) ("lppl1.3c" 'lppl1.3c)
("cc0" 'cc0)
("cc-by-2" 'cc-by2.0) ("cc-by-2" 'cc-by2.0)
("cc-by-3" 'cc-by3.0) ("cc-by-3" 'cc-by3.0)
("cc-by-4" 'cc-by4.0) ("cc-by-4" 'cc-by4.0)
@ -106,6 +107,7 @@
;; <https://www.gust.org.pl/projects/e-foundry/licenses>). It has de ;; <https://www.gust.org.pl/projects/e-foundry/licenses>). It has de
;; facto become GUST Font License 1.0. ;; facto become GUST Font License 1.0.
((or "gfl" "gfsl") 'gfl1.0) ((or "gfl" "gfsl") 'gfl1.0)
("isc" 'isc)
;; These are known non-free licenses ;; These are known non-free licenses
("noinfo" 'unknown) ("noinfo" 'unknown)