guix_mirror_bot pushed a commit to branch tex-team
in repository guix.
commit afc2d730899fdb4e977e7d67039c51ef74014079
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Thu Mar 5 12:30:03 2026 +0100
guix: texlive importer: Handle additional licenses.
* guix/import/texlive.scm (string->license): Handle additional licenses.
Change-Id: Idb89ef4b3f9ba52a404caa4cc7f4a61d4e1201e6
---
guix/import/texlive.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/guix/import/texlive.scm b/guix/import/texlive.scm
index 5978f17321..2b36251f44 100644
--- a/guix/import/texlive.scm
+++ b/guix/import/texlive.scm
@@ -283,6 +283,7 @@ calls."
(match-lambda
("artistic2" 'artistic2.0)
("apache2" 'asl2.0)
+ ("agpl3" 'agpl3+) ;usually means "or later"
("gpl" 'gpl3+)
("gpl1" 'gpl1)
("gpl1+" 'gpl1+)
@@ -294,6 +295,7 @@ calls."
("lgpl3" 'lgpl3)
("knuth" 'knuth)
("pd" 'public-domain)
+ ("0bsd" 'bsd-0)
("bsd2" 'bsd-2)
("bsd3" 'bsd-3)
("bsd4" 'bsd-4)