1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

guix: texlive importer: Handle additional licenses.

* guix/import/texlive.scm (string->license): Handle additional licenses.

Change-Id: Idb89ef4b3f9ba52a404caa4cc7f4a61d4e1201e6
This commit is contained in:
Nicolas Goaziou
2026-03-05 12:30:03 +01:00
parent c6cfd8d1e9
commit 235947cba6

View File

@@ -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)