summary refs log tree commit diff
path: root/guix
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2023-07-12 12:16:39 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2023-07-18 18:16:55 +0200
commit75677daa8341946b906a2712188c2d349f6174aa (patch)
tree1f5a463a1f5ad85bdd96b4b006eef5678bedfb29 /guix
parent765c92c27ace9ebb198830a78f9ed6b9aeb3da2d (diff)
downloadguix-75677daa8341946b906a2712188c2d349f6174aa.tar.gz
guix: import: texlive importer handles more licenses.
* guix/import/texlive.scm (string->license): Handle CC0 and ISC licenses.
Diffstat (limited to 'guix')
-rw-r--r--guix/import/texlive.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/import/texlive.scm b/guix/import/texlive.scm
index cb9651419b..de08981d46 100644
--- a/guix/import/texlive.scm
+++ b/guix/import/texlive.scm
@@ -93,6 +93,7 @@
     ("lppl1.3a" 'lppl1.3a)
     ("lppl1.3b" 'lppl1.3b)
     ("lppl1.3c" 'lppl1.3c)
+    ("cc0" 'cc0)
     ("cc-by-2" 'cc-by2.0)
     ("cc-by-3" 'cc-by3.0)
     ("cc-by-4" 'cc-by4.0)
@@ -106,6 +107,7 @@
     ;; <https://www.gust.org.pl/projects/e-foundry/licenses>).  It has de
     ;; facto become GUST Font License 1.0.
     ((or "gfl" "gfsl") 'gfl1.0)
+    ("isc" 'isc)
 
     ;; These are known non-free licenses
     ("noinfo" 'unknown)