diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-19 11:36:09 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:15:46 +0200 |
commit | b72c282d535ff8aa40eb75bf5285b14304586411 (patch) | |
tree | 88cba1b128656dc298e31c43eb859f1920ab724f /guix/import | |
parent | 28f9cab0de5f3bfdaf3823e4fb8eef97d3711939 (diff) |
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.
Diffstat (limited to 'guix/import')
-rw-r--r-- | guix/import/texlive.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/guix/import/texlive.scm b/guix/import/texlive.scm index d4fa8bb674..f3d941155d 100644 --- a/guix/import/texlive.scm +++ b/guix/import/texlive.scm @@ -98,7 +98,11 @@ ("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) |