guix: Handle asl2.0 license in texlive importer.

* guix/import/texlive.scm (string->license): Convert "apache2" to ASL2.0.
This commit is contained in:
Nicolas Goaziou 2023-06-19 13:09:55 +02:00
parent 3121f754c4
commit aea0d94bc1
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -65,6 +65,7 @@ (define texlive-generic-locations
(define string->license
(match-lambda
("artistic2" 'gpl3+)
("apache2" 'asl2.0)
("gpl" 'gpl3+)
("gpl1" 'gpl1)
("gpl1+" 'gpl1+)