guix: Make "gfsl" an alias for gfl1.0 license in texlive importer.

* guix/import/texlive.scm (string->license): Make "gfsl" and alias for GFL1.0.
This commit is contained in:
Nicolas Goaziou 2023-06-19 11:36:09 +02:00
parent 28f9cab0de
commit b72c282d53
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -98,7 +98,11 @@ (define string->license
("cc-by-sa-4" 'cc-by-sa4.0)
("mit" 'expat)
("fdl" 'fdl1.3+)
("gfl" 'gfl1.0)
;; The GUST Font Nosource License, which is legally equivalent to
;; lppl1.3c+, is no longer in use (per
;; <https://www.gust.org.pl/projects/e-foundry/licenses>). It has de
;; facto become GUST Font License 1.0.
((or "gfl" "gfsl") 'gfl1.0)
;; These are known non-free licenses
("noinfo" 'unknown)