diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:06:32 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:19:02 +0200 |
commit | f832746ab6b124814ceb6dedc141c9f60f34e082 (patch) | |
tree | ab9d36bdd7abb5e0e49856ab12d87d2f57cea9f2 | |
parent | 0bc890a5cb9153b27c99df8014f679d478cfd3d3 (diff) |
guix: Fix license translation in texlive importer.
* guix/import/texlive.scm (string->license): Properly translate "artistic2"
into `artistic2.0'.
-rw-r--r-- | guix/import/texlive.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/import/texlive.scm b/guix/import/texlive.scm index 29c2ba4dd1..b5a812b34e 100644 --- a/guix/import/texlive.scm +++ b/guix/import/texlive.scm @@ -66,7 +66,7 @@ (define string->license (match-lambda - ("artistic2" 'gpl3+) + ("artistic2" 'artistic2.0) ("apache2" 'asl2.0) ("gpl" 'gpl3+) ("gpl1" 'gpl1) |