diff options
author | Kyle Meyer <kyle@kyleam.com> | 2022-05-22 18:28:04 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-05-23 16:24:47 +0200 |
commit | 71de612e10e3669b9dadba521664bd91d233a521 (patch) | |
tree | 2abcf4b956e2d655692d5698cb0edcd7b333e528 /guix/import | |
parent | 4ab5c8348d29fb71c98a920a478f4b319faacf29 (diff) |
licenses: Add Expat No Attribution license.
* guix/licenses.scm (expat-0): New variable.
* guix/import/utils.scm (spdx-string->license): Add MIT-0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix/import')
-rw-r--r-- | guix/import/utils.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/import/utils.scm b/guix/import/utils.scm index 646921c73b..26eebfece5 100644 --- a/guix/import/utils.scm +++ b/guix/import/utils.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev> ;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz> ;;; Copyright © 2022 Alice Brenon <alice.brenon@ens-lyon.fr> +;;; Copyright © 2022 Kyle Meyer <kyle@kyleam.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -176,6 +177,7 @@ of the string VERSION is replaced by the symbol 'version." ("EPL-2.0" 'license:epl2.0) ("EUPL-1.2" 'license:eupl1.2) ("MIT" 'license:expat) + ("MIT-0" 'license:expat-0) ("FTL" 'license:freetype) ("FreeBSD-DOC" 'license:freebsd-doc) ("Freetype" 'license:freetype) |