Merge pull request #136474 from waldheinz/etc-file-source-to-store
[NixPkgs.git] / lib / licenses.nix
blob772985f9509d799a089749ba090646d3ed7040f6
1 { lib }:
3 lib.mapAttrs (lname: lset: let
4   defaultLicense = rec {
5     shortName = lname;
6     free = true; # Most of our licenses are Free, explicitly declare unfree additions as such!
7     deprecated = false;
8   };
10   mkLicense = licenseDeclaration: let
11     applyDefaults = license: defaultLicense // license;
12     applySpdx = license:
13       if license ? spdxId
14       then license // { url = "https://spdx.org/licenses/${license.spdxId}.html"; }
15       else license;
16     applyRedistributable = license: { redistributable = license.free; } // license;
17   in lib.pipe licenseDeclaration [
18     applyDefaults
19     applySpdx
20     applyRedistributable
21   ];
22 in mkLicense lset) ({
23   /* License identifiers from spdx.org where possible.
24    * If you cannot find your license here, then look for a similar license or
25    * add it to this list. The URL mentioned above is a good source for inspiration.
26    */
28   abstyles = {
29     spdxId = "Abstyles";
30     fullName = "Abstyles License";
31   };
33   afl20 = {
34     spdxId = "AFL-2.0";
35     fullName = "Academic Free License v2.0";
36   };
38   afl21 = {
39     spdxId = "AFL-2.1";
40     fullName = "Academic Free License v2.1";
41   };
43   afl3 = {
44     spdxId = "AFL-3.0";
45     fullName = "Academic Free License v3.0";
46   };
48   agpl3Only = {
49     spdxId = "AGPL-3.0-only";
50     fullName = "GNU Affero General Public License v3.0 only";
51   };
53   agpl3Plus = {
54     spdxId = "AGPL-3.0-or-later";
55     fullName = "GNU Affero General Public License v3.0 or later";
56   };
58   amazonsl = {
59     fullName = "Amazon Software License";
60     url = "https://aws.amazon.com/asl/";
61     free = false;
62   };
64   amd = {
65     fullName = "AMD License Agreement";
66     url = "https://developer.amd.com/amd-license-agreement/";
67     free = false;
68   };
70   apsl20 = {
71     spdxId = "APSL-2.0";
72     fullName = "Apple Public Source License 2.0";
73   };
75   arphicpl = {
76     fullName = "Arphic Public License";
77     url = "https://www.freedesktop.org/wiki/Arphic_Public_License/";
78   };
80   artistic1 = {
81     spdxId = "Artistic-1.0";
82     fullName = "Artistic License 1.0";
83   };
85   artistic2 = {
86     spdxId = "Artistic-2.0";
87     fullName = "Artistic License 2.0";
88   };
90   asl20 = {
91     spdxId = "Apache-2.0";
92     fullName = "Apache License 2.0";
93   };
95   boost = {
96     spdxId = "BSL-1.0";
97     fullName = "Boost Software License 1.0";
98   };
100   beerware = {
101     spdxId = "Beerware";
102     fullName = "Beerware License";
103   };
105   blueOak100 = {
106     spdxId = "BlueOak-1.0.0";
107     fullName = "Blue Oak Model License 1.0.0";
108   };
110   bsd0 = {
111     spdxId = "0BSD";
112     fullName = "BSD Zero Clause License";
113   };
115   bsd1 = {
116     spdxId = "BSD-1-Clause";
117     fullName = "BSD 1-Clause License";
118   };
120   bsd2 = {
121     spdxId = "BSD-2-Clause";
122     fullName = ''BSD 2-clause "Simplified" License'';
123   };
125   bsd2Patent = {
126     spdxId = "BSD-2-Clause-Patent";
127     fullName = "BSD-2-Clause Plus Patent License";
128   };
130   bsd3 = {
131     spdxId = "BSD-3-Clause";
132     fullName = ''BSD 3-clause "New" or "Revised" License'';
133   };
135   bsdOriginal = {
136     spdxId = "BSD-4-Clause";
137     fullName = ''BSD 4-clause "Original" or "Old" License'';
138   };
140   bsdOriginalUC = {
141     spdxId = "BSD-4-Clause-UC";
142     fullName = "BSD 4-Clause University of California-Specific";
143   };
145   bsdProtection = {
146     spdxId = "BSD-Protection";
147     fullName = "BSD Protection License";
148   };
150   bsl11 = {
151     fullName = "Business Source License 1.1";
152     url = "https://mariadb.com/bsl11";
153     free = false;
154   };
156   clArtistic = {
157     spdxId = "ClArtistic";
158     fullName = "Clarified Artistic License";
159   };
161   cc0 = {
162     spdxId = "CC0-1.0";
163     fullName = "Creative Commons Zero v1.0 Universal";
164   };
166   cc-by-nc-sa-20 = {
167     spdxId = "CC-BY-NC-SA-2.0";
168     fullName = "Creative Commons Attribution Non Commercial Share Alike 2.0";
169     free = false;
170   };
172   cc-by-nc-sa-25 = {
173     spdxId = "CC-BY-NC-SA-2.5";
174     fullName = "Creative Commons Attribution Non Commercial Share Alike 2.5";
175     free = false;
176   };
178   cc-by-nc-sa-30 = {
179     spdxId = "CC-BY-NC-SA-3.0";
180     fullName = "Creative Commons Attribution Non Commercial Share Alike 3.0";
181     free = false;
182   };
184   cc-by-nc-sa-40 = {
185     spdxId = "CC-BY-NC-SA-4.0";
186     fullName = "Creative Commons Attribution Non Commercial Share Alike 4.0";
187     free = false;
188   };
190   cc-by-nc-30 = {
191     spdxId = "CC-BY-NC-3.0";
192     fullName = "Creative Commons Attribution Non Commercial 3.0 Unported";
193     free = false;
194   };
196   cc-by-nc-40 = {
197     spdxId = "CC-BY-NC-4.0";
198     fullName = "Creative Commons Attribution Non Commercial 4.0 International";
199     free = false;
200   };
202   cc-by-nd-30 = {
203     spdxId = "CC-BY-ND-3.0";
204     fullName = "Creative Commons Attribution-No Derivative Works v3.00";
205     free = false;
206   };
208   cc-by-sa-25 = {
209     spdxId = "CC-BY-SA-2.5";
210     fullName = "Creative Commons Attribution Share Alike 2.5";
211   };
213   cc-by-30 = {
214     spdxId = "CC-BY-3.0";
215     fullName = "Creative Commons Attribution 3.0";
216   };
218   cc-by-sa-30 = {
219     spdxId = "CC-BY-SA-3.0";
220     fullName = "Creative Commons Attribution Share Alike 3.0";
221   };
223   cc-by-40 = {
224     spdxId = "CC-BY-4.0";
225     fullName = "Creative Commons Attribution 4.0";
226   };
228   cc-by-sa-40 = {
229     spdxId = "CC-BY-SA-4.0";
230     fullName = "Creative Commons Attribution Share Alike 4.0";
231   };
233   cddl = {
234     spdxId = "CDDL-1.0";
235     fullName = "Common Development and Distribution License 1.0";
236   };
238   cecill20 = {
239     spdxId = "CECILL-2.0";
240     fullName = "CeCILL Free Software License Agreement v2.0";
241   };
243   cecill-b = {
244     spdxId = "CECILL-B";
245     fullName  = "CeCILL-B Free Software License Agreement";
246   };
248   cecill-c = {
249     spdxId = "CECILL-C";
250     fullName  = "CeCILL-C Free Software License Agreement";
251   };
253   cpal10 = {
254     spdxId = "CPAL-1.0";
255     fullName = "Common Public Attribution License 1.0";
256   };
258   cpl10 = {
259     spdxId = "CPL-1.0";
260     fullName = "Common Public License 1.0";
261   };
263   curl = {
264     spdxId = "curl";
265     fullName = "curl License";
266   };
268   doc = {
269     spdxId = "DOC";
270     fullName = "DOC License";
271   };
273   eapl = {
274     fullName = "EPSON AVASYS PUBLIC LICENSE";
275     url = "https://avasys.jp/hp/menu000000700/hpg000000603.htm";
276     free = false;
277   };
279   efl10 = {
280     spdxId = "EFL-1.0";
281     fullName = "Eiffel Forum License v1.0";
282   };
284   efl20 = {
285     spdxId = "EFL-2.0";
286     fullName = "Eiffel Forum License v2.0";
287   };
289   elastic = {
290     fullName = "ELASTIC LICENSE";
291     url = "https://github.com/elastic/elasticsearch/blob/master/licenses/ELASTIC-LICENSE.txt";
292     free = false;
293   };
295   epl10 = {
296     spdxId = "EPL-1.0";
297     fullName = "Eclipse Public License 1.0";
298   };
300   epl20 = {
301     spdxId = "EPL-2.0";
302     fullName = "Eclipse Public License 2.0";
303   };
305   epson = {
306     fullName = "Seiko Epson Corporation Software License Agreement for Linux";
307     url = "https://download.ebz.epson.net/dsc/du/02/eula/global/LINUX_EN.html";
308     free = false;
309   };
311   eupl11 = {
312     spdxId = "EUPL-1.1";
313     fullName = "European Union Public License 1.1";
314   };
316   eupl12 = {
317     spdxId = "EUPL-1.2";
318     fullName = "European Union Public License 1.2";
319   };
321   fdl11Only = {
322     spdxId = "GFDL-1.1-only";
323     fullName = "GNU Free Documentation License v1.1 only";
324   };
326   fdl11Plus = {
327     spdxId = "GFDL-1.1-or-later";
328     fullName = "GNU Free Documentation License v1.1 or later";
329   };
331   fdl12Only = {
332     spdxId = "GFDL-1.2-only";
333     fullName = "GNU Free Documentation License v1.2 only";
334   };
336   fdl12Plus = {
337     spdxId = "GFDL-1.2-or-later";
338     fullName = "GNU Free Documentation License v1.2 or later";
339   };
341   fdl13Only = {
342     spdxId = "GFDL-1.3-only";
343     fullName = "GNU Free Documentation License v1.3 only";
344   };
346   fdl13Plus = {
347     spdxId = "GFDL-1.3-or-later";
348     fullName = "GNU Free Documentation License v1.3 or later";
349   };
351   ffsl = {
352     fullName = "Floodgap Free Software License";
353     url = "https://www.floodgap.com/software/ffsl/license.html";
354     free = false;
355   };
357   free = {
358     fullName = "Unspecified free software license";
359   };
361   ftl = {
362     spdxId = "FTL";
363     fullName = "Freetype Project License";
364   };
366   g4sl = {
367     fullName = "Geant4 Software License";
368     url = "https://geant4.web.cern.ch/geant4/license/LICENSE.html";
369   };
371   geogebra = {
372     fullName = "GeoGebra Non-Commercial License Agreement";
373     url = "https://www.geogebra.org/license";
374     free = false;
375   };
377   gpl1Only = {
378     spdxId = "GPL-1.0-only";
379     fullName = "GNU General Public License v1.0 only";
380   };
382   gpl1Plus = {
383     spdxId = "GPL-1.0-or-later";
384     fullName = "GNU General Public License v1.0 or later";
385   };
387   gpl2Only = {
388     spdxId = "GPL-2.0-only";
389     fullName = "GNU General Public License v2.0 only";
390   };
392   gpl2Classpath = {
393     spdxId = "GPL-2.0-with-classpath-exception";
394     fullName = "GNU General Public License v2.0 only (with Classpath exception)";
395   };
397   gpl2ClasspathPlus = {
398     fullName = "GNU General Public License v2.0 or later (with Classpath exception)";
399     url = "https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception";
400   };
402   gpl2Oss = {
403     fullName = "GNU General Public License version 2 only (with OSI approved licenses linking exception)";
404     url = "https://www.mysql.com/about/legal/licensing/foss-exception";
405   };
407   gpl2Plus = {
408     spdxId = "GPL-2.0-or-later";
409     fullName = "GNU General Public License v2.0 or later";
410   };
412   gpl3Only = {
413     spdxId = "GPL-3.0-only";
414     fullName = "GNU General Public License v3.0 only";
415   };
417   gpl3Plus = {
418     spdxId = "GPL-3.0-or-later";
419     fullName = "GNU General Public License v3.0 or later";
420   };
422   gpl3ClasspathPlus = {
423     fullName = "GNU General Public License v3.0 or later (with Classpath exception)";
424     url = "https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception";
425   };
427   hpnd = {
428     spdxId = "HPND";
429     fullName = "Historic Permission Notice and Disclaimer";
430   };
432   hpndSellVariant = {
433     fullName = "Historical Permission Notice and Disclaimer - sell variant";
434     spdxId = "HPND-sell-variant";
435   };
437   # Intel's license, seems free
438   iasl = {
439     fullName = "iASL";
440     url = "https://old.calculate-linux.org/packages/licenses/iASL";
441   };
443   ijg = {
444     spdxId = "IJG";
445     fullName = "Independent JPEG Group License";
446   };
448   imagemagick = {
449     fullName = "ImageMagick License";
450     spdxId = "imagemagick";
451   };
453   inria-compcert = {
454     fullName  = "INRIA Non-Commercial License Agreement for the CompCert verified compiler";
455     url       = "https://compcert.org/doc/LICENSE.txt";
456     free      = false;
457   };
459   inria-icesl = {
460     fullName = "INRIA Non-Commercial License Agreement for IceSL";
461     url      = "https://icesl.loria.fr/assets/pdf/EULA_IceSL_binary.pdf";
462     free     = false;
463   };
465   ipa = {
466     spdxId = "IPA";
467     fullName = "IPA Font License";
468   };
470   ipl10 = {
471     spdxId = "IPL-1.0";
472     fullName = "IBM Public License v1.0";
473   };
475   isc = {
476     spdxId = "ISC";
477     fullName = "ISC License";
478   };
480   # Proprietary binaries; free to redistribute without modification.
481   databricks = {
482     fullName = "Databricks Proprietary License";
483     url = "https://pypi.org/project/databricks-connect";
484     free = false;
485   };
487   issl = {
488     fullName = "Intel Simplified Software License";
489     url = "https://software.intel.com/en-us/license/intel-simplified-software-license";
490     free = false;
491   };
493   lgpl2Only = {
494     spdxId = "LGPL-2.0-only";
495     fullName = "GNU Library General Public License v2 only";
496   };
498   lgpl2Plus = {
499     spdxId = "LGPL-2.0-or-later";
500     fullName = "GNU Library General Public License v2 or later";
501   };
503   lgpl21Only = {
504     spdxId = "LGPL-2.1-only";
505     fullName = "GNU Lesser General Public License v2.1 only";
506   };
508   lgpl21Plus = {
509     spdxId = "LGPL-2.1-or-later";
510     fullName = "GNU Lesser General Public License v2.1 or later";
511   };
513   lgpl3Only = {
514     spdxId = "LGPL-3.0-only";
515     fullName = "GNU Lesser General Public License v3.0 only";
516   };
518   lgpl3Plus = {
519     spdxId = "LGPL-3.0-or-later";
520     fullName = "GNU Lesser General Public License v3.0 or later";
521   };
523   lgpllr = {
524     spdxId = "LGPLLR";
525     fullName = "Lesser General Public License For Linguistic Resources";
526   };
528   libpng = {
529     spdxId = "Libpng";
530     fullName = "libpng License";
531   };
533   libpng2 = {
534     spdxId = "libpng-2.0"; # Used since libpng 1.6.36.
535     fullName = "PNG Reference Library version 2";
536   };
538   libtiff = {
539     spdxId = "libtiff";
540     fullName = "libtiff License";
541   };
543   llgpl21 = {
544     fullName = "Lisp LGPL; GNU Lesser General Public License version 2.1 with Franz Inc. preamble for clarification of LGPL terms in context of Lisp";
545     url = "https://opensource.franz.com/preamble.html";
546   };
548   llvm-exception = {
549     spdxId = "LLVM-exception";
550     fullName = "LLVM Exception"; # LLVM exceptions to the Apache 2.0 License
551   };
553   lppl12 = {
554     spdxId = "LPPL-1.2";
555     fullName = "LaTeX Project Public License v1.2";
556   };
558   lppl13c = {
559     spdxId = "LPPL-1.3c";
560     fullName = "LaTeX Project Public License v1.3c";
561   };
563   lpl-102 = {
564     spdxId = "LPL-1.02";
565     fullName = "Lucent Public License v1.02";
566   };
568   miros = {
569     fullName = "MirOS License";
570     url = "https://opensource.org/licenses/MirOS";
571   };
573   # spdx.org does not (yet) differentiate between the X11 and Expat versions
574   # for details see https://en.wikipedia.org/wiki/MIT_License#Various_versions
575   mit = {
576     spdxId = "MIT";
577     fullName = "MIT License";
578   };
580   mpl10 = {
581     spdxId = "MPL-1.0";
582     fullName = "Mozilla Public License 1.0";
583   };
585   mpl11 = {
586     spdxId = "MPL-1.1";
587     fullName = "Mozilla Public License 1.1";
588   };
590   mpl20 = {
591     spdxId = "MPL-2.0";
592     fullName = "Mozilla Public License 2.0";
593   };
595   mspl = {
596     spdxId = "MS-PL";
597     fullName = "Microsoft Public License";
598   };
600   nasa13 = {
601     spdxId = "NASA-1.3";
602     fullName = "NASA Open Source Agreement 1.3";
603     free = false;
604   };
606   ncsa = {
607     spdxId = "NCSA";
608     fullName  = "University of Illinois/NCSA Open Source License";
609   };
611   nposl3 = {
612     spdxId = "NPOSL-3.0";
613     fullName = "Non-Profit Open Software License 3.0";
614   };
616   obsidian = {
617     fullName = "Obsidian End User Agreement";
618     url = "https://obsidian.md/eula";
619     free = false;
620   };
622   ocamlpro_nc = {
623     fullName = "OCamlPro Non Commercial license version 1";
624     url = "https://alt-ergo.ocamlpro.com/http/alt-ergo-2.2.0/OCamlPro-Non-Commercial-License.pdf";
625     free = false;
626   };
628   odbl = {
629     spdxId = "ODbL-1.0";
630     fullName = "Open Data Commons Open Database License v1.0";
631   };
633   ofl = {
634     spdxId = "OFL-1.1";
635     fullName = "SIL Open Font License 1.1";
636   };
638   openldap = {
639     spdxId = "OLDAP-2.8";
640     fullName = "Open LDAP Public License v2.8";
641   };
643   openssl = {
644     spdxId = "OpenSSL";
645     fullName = "OpenSSL License";
646   };
648   osl2 = {
649     spdxId = "OSL-2.0";
650     fullName = "Open Software License 2.0";
651   };
653   osl21 = {
654     spdxId = "OSL-2.1";
655     fullName = "Open Software License 2.1";
656   };
658   osl3 = {
659     spdxId = "OSL-3.0";
660     fullName = "Open Software License 3.0";
661   };
663   parity70 = {
664     spdxId = "Parity-7.0.0";
665     fullName = "Parity Public License 7.0.0";
666     url = "https://paritylicense.com/versions/7.0.0.html";
667   };
669   php301 = {
670     spdxId = "PHP-3.01";
671     fullName = "PHP License v3.01";
672   };
674   postgresql = {
675     spdxId = "PostgreSQL";
676     fullName = "PostgreSQL License";
677   };
679   postman = {
680     fullName = "Postman EULA";
681     url = "https://www.getpostman.com/licenses/postman_base_app";
682     free = false;
683   };
685   psfl = {
686     spdxId = "Python-2.0";
687     fullName = "Python Software Foundation License version 2";
688     url = "https://docs.python.org/license.html";
689   };
691   publicDomain = {
692     fullName = "Public Domain";
693   };
695   purdueBsd = {
696     fullName = " Purdue BSD-Style License"; # also know as lsof license
697     url = "https://enterprise.dejacode.com/licenses/public/purdue-bsd";
698   };
700   prosperity30 = {
701     fullName = "Prosperity-3.0.0";
702     free = false;
703     url = "https://prosperitylicense.com/versions/3.0.0.html";
704   };
706   qhull = {
707     spdxId = "Qhull";
708     fullName = "Qhull License";
709   };
711   qpl = {
712     spdxId = "QPL-1.0";
713     fullName = "Q Public License 1.0";
714   };
716   qwt = {
717     fullName = "Qwt License, Version 1.0";
718     url = "https://qwt.sourceforge.io/qwtlicense.html";
719   };
721   ruby = {
722     spdxId = "Ruby";
723     fullName = "Ruby License";
724   };
726   sendmail = {
727     spdxId = "Sendmail";
728     fullName = "Sendmail License";
729   };
731   sgi-b-20 = {
732     spdxId = "SGI-B-2.0";
733     fullName = "SGI Free Software License B v2.0";
734   };
736   sleepycat = {
737     spdxId = "Sleepycat";
738     fullName = "Sleepycat License";
739   };
741   smail = {
742     shortName = "smail";
743     fullName = "SMAIL General Public License";
744     url = "https://sources.debian.org/copyright/license/debianutils/4.9.1/";
745   };
747   sspl = {
748     shortName = "SSPL";
749     fullName = "Server Side Public License";
750     url = "https://www.mongodb.com/licensing/server-side-public-license";
751     free = false;
752     # NOTE Debatable.
753     # The license a slightly modified AGPL but still considered unfree by the
754     # OSI for what seem like political reasons
755     redistributable = true; # Definitely redistributable though, it's an AGPL derivative
756   };
758   stk = {
759     shortName = "stk";
760     fullName = "Synthesis Tool Kit 4.3";
761     url = "https://github.com/thestk/stk/blob/master/LICENSE";
762   };
764   tcltk = {
765     spdxId = "TCL";
766     fullName = "TCL/TK License";
767   };
769   ufl = {
770     fullName = "Ubuntu Font License 1.0";
771     url = "https://ubuntu.com/legal/font-licence";
772   };
774   unfree = {
775     fullName = "Unfree";
776     free = false;
777   };
779   unfreeRedistributable = {
780     fullName = "Unfree redistributable";
781     free = false;
782     redistributable = true;
783   };
785   unfreeRedistributableFirmware = {
786     fullName = "Unfree redistributable firmware";
787     redistributable = true;
788     # Note: we currently consider these "free" for inclusion in the
789     # channel and NixOS images.
790   };
792   unicode-dfs-2015 = {
793     spdxId = "Unicode-DFS-2015";
794     fullName = "Unicode License Agreement - Data Files and Software (2015)";
795   };
797   unicode-dfs-2016 = {
798     spdxId = "Unicode-DFS-2016";
799     fullName = "Unicode License Agreement - Data Files and Software (2016)";
800   };
802   unlicense = {
803     spdxId = "Unlicense";
804     fullName = "The Unlicense";
805   };
807   upl = {
808     fullName = "Universal Permissive License";
809     url = "https://oss.oracle.com/licenses/upl/";
810   };
812   vim = {
813     spdxId = "Vim";
814     fullName = "Vim License";
815   };
817   virtualbox-puel = {
818     fullName = "Oracle VM VirtualBox Extension Pack Personal Use and Evaluation License (PUEL)";
819     url = "https://www.virtualbox.org/wiki/VirtualBox_PUEL";
820     free = false;
821   };
823   vsl10 = {
824     spdxId = "VSL-1.0";
825     fullName = "Vovida Software License v1.0";
826   };
828   watcom = {
829     spdxId = "Watcom-1.0";
830     fullName = "Sybase Open Watcom Public License 1.0";
831   };
833   w3c = {
834     spdxId = "W3C";
835     fullName = "W3C Software Notice and License";
836   };
838   wadalab = {
839     fullName = "Wadalab Font License";
840     url = "https://fedoraproject.org/wiki/Licensing:Wadalab?rd=Licensing/Wadalab";
841   };
843   wtfpl = {
844     spdxId = "WTFPL";
845     fullName = "Do What The F*ck You Want To Public License";
846   };
848   wxWindows = {
849     spdxId = "wxWindows";
850     fullName = "wxWindows Library Licence, Version 3.1";
851   };
853   xfig = {
854     fullName = "xfig";
855     url = "http://mcj.sourceforge.net/authors.html#xfig"; # https is broken
856   };
858   zlib = {
859     spdxId = "Zlib";
860     fullName = "zlib License";
861   };
863   zpl20 = {
864     spdxId = "ZPL-2.0";
865     fullName = "Zope Public License 2.0";
866   };
868   zpl21 = {
869     spdxId = "ZPL-2.1";
870     fullName = "Zope Public License 2.1";
871   };
872 } // {
873   # TODO: remove legacy aliases
874   agpl3 = {
875     spdxId = "AGPL-3.0";
876     fullName = "GNU Affero General Public License v3.0";
877     deprecated = true;
878   };
879   fdl11 = {
880     spdxId = "GFDL-1.1";
881     fullName = "GNU Free Documentation License v1.1";
882     deprecated = true;
883   };
884   fdl12 = {
885     spdxId = "GFDL-1.2";
886     fullName = "GNU Free Documentation License v1.2";
887     deprecated = true;
888   };
889   fdl13 = {
890     spdxId = "GFDL-1.3";
891     fullName = "GNU Free Documentation License v1.3";
892     deprecated = true;
893   };
894   gpl1 = {
895     spdxId = "GPL-1.0";
896     fullName = "GNU General Public License v1.0";
897     deprecated = true;
898   };
899   gpl2 = {
900     spdxId = "GPL-2.0";
901     fullName = "GNU General Public License v2.0";
902     deprecated = true;
903   };
904   gpl3 = {
905     spdxId = "GPL-3.0";
906     fullName = "GNU General Public License v3.0";
907     deprecated = true;
908   };
909   lgpl2 = {
910     spdxId = "LGPL-2.0";
911     fullName = "GNU Library General Public License v2";
912     deprecated = true;
913   };
914   lgpl21 = {
915     spdxId = "LGPL-2.1";
916     fullName = "GNU Lesser General Public License v2.1";
917     deprecated = true;
918   };
919   lgpl3 = {
920     spdxId = "LGPL-3.0";
921     fullName = "GNU Lesser General Public License v3.0";
922     deprecated = true;
923   };