python312Packages.rzpipe: 0.6.0 -> 0.6.2 (#356435)
[NixPkgs.git] / lib / licenses.nix
blob85b99f329162974672a6f9fe124f47098522ab30
1 { lib }:
2 let
3   inherit (lib) optionalAttrs;
5   mkLicense = lname: {
6     shortName ? lname,
7     # Most of our licenses are Free, explicitly declare unfree additions as such!
8     free ? true,
9     deprecated ? false,
10     spdxId ? null,
11     url ? null,
12     fullName ? null,
13     redistributable ? free
14   }@attrs: {
15     inherit shortName free deprecated redistributable;
16   } // optionalAttrs (attrs ? spdxId) {
17     inherit spdxId;
18     url = "https://spdx.org/licenses/${spdxId}.html";
19   } // optionalAttrs (attrs ? url) {
20     inherit url;
21   } // optionalAttrs (attrs ? fullName) {
22     inherit fullName;
23   };
26 lib.mapAttrs mkLicense ({
27   /* License identifiers from spdx.org where possible.
28    * If you cannot find your license here, then look for a similar license or
29    * add it to this list. The URL mentioned above is a good source for inspiration.
30    */
32   abstyles = {
33     spdxId = "Abstyles";
34     fullName = "Abstyles License";
35   };
37   acsl14 = {
38     fullName = "Anti-Capitalist Software License v1.4";
39     url = "https://anticapitalist.software/";
40     /* restrictions on corporations apply for both use and redistribution */
41     free = false;
42     redistributable = false;
43   };
45   activision = {
46     # https://doomwiki.org/wiki/Raven_source_code_licensing
47     fullName = "Activision EULA";
48     url = "https://www.doomworld.com/eternity/activision_eula.txt";
49     free = false;
50   };
52   afl20 = {
53     spdxId = "AFL-2.0";
54     fullName = "Academic Free License v2.0";
55   };
57   afl21 = {
58     spdxId = "AFL-2.1";
59     fullName = "Academic Free License v2.1";
60   };
62   afl3 = {
63     spdxId = "AFL-3.0";
64     fullName = "Academic Free License v3.0";
65   };
67   agpl3Only = {
68     spdxId = "AGPL-3.0-only";
69     fullName = "GNU Affero General Public License v3.0 only";
70   };
72   agpl3Plus = {
73     spdxId = "AGPL-3.0-or-later";
74     fullName = "GNU Affero General Public License v3.0 or later";
75   };
77   aladdin = {
78     spdxId = "Aladdin";
79     fullName = "Aladdin Free Public License";
80     free = false;
81   };
83   amazonsl = {
84     fullName = "Amazon Software License";
85     url = "https://aws.amazon.com/asl/";
86     free = false;
87   };
89   amd = {
90     fullName = "AMD License Agreement";
91     url = "https://developer.amd.com/amd-license-agreement/";
92     free = false;
93   };
95   ampas = {
96     spdxId = "AMPAS";
97     fullName = "Academy of Motion Picture Arts and Sciences BSD";
98   };
100   aom = {
101     fullName = "Alliance for Open Media Patent License 1.0";
102     url = "https://aomedia.org/license/patent-license/";
103   };
105   apple-psl10 = {
106     spdxId = "APSL-1.0";
107     fullName = "Apple Public Source License 1.0";
108   };
110   apple-psl20 = {
111     spdxId = "APSL-2.0";
112     fullName = "Apple Public Source License 2.0";
113   };
115   arphicpl = {
116     spdxId = "Arphic-1999";
117     fullName = "Arphic Public License";
118   };
120   artistic1 = {
121     spdxId = "Artistic-1.0";
122     fullName = "Artistic License 1.0";
123   };
125   artistic1-cl8 = {
126     spdxId = "Artistic-1.0-cl8";
127     fullName = "Artistic License 1.0 w/clause 8";
128   };
130   artistic2 = {
131     spdxId = "Artistic-2.0";
132     fullName = "Artistic License 2.0";
133   };
135   asl20 = {
136     spdxId = "Apache-2.0";
137     fullName = "Apache License 2.0";
138   };
140   asl20-llvm = {
141     spdxId = "Apache-2.0 WITH LLVM-exception";
142     fullName = "Apache License 2.0 with LLVM Exceptions";
143   };
145   bitstreamVera = {
146     spdxId = "Bitstream-Vera";
147     fullName = "Bitstream Vera Font License";
148   };
150   bitTorrent10 = {
151      spdxId = "BitTorrent-1.0";
152      fullName = " BitTorrent Open Source License v1.0";
153   };
155   bitTorrent11 = {
156     spdxId = "BitTorrent-1.1";
157     fullName = " BitTorrent Open Source License v1.1";
158   };
160   bola11 = {
161     url = "https://blitiri.com.ar/p/bola/";
162     fullName = "Buena Onda License Agreement 1.1";
163   };
165   boost = {
166     spdxId = "BSL-1.0";
167     fullName = "Boost Software License 1.0";
168   };
170   beerware = {
171     spdxId = "Beerware";
172     fullName = "Beerware License";
173   };
175   blueOak100 = {
176     spdxId = "BlueOak-1.0.0";
177     fullName = "Blue Oak Model License 1.0.0";
178   };
180   bsd0 = {
181     spdxId = "0BSD";
182     fullName = "BSD Zero Clause License";
183   };
185   bsd1 = {
186     spdxId = "BSD-1-Clause";
187     fullName = "BSD 1-Clause License";
188   };
190   bsd2 = {
191     spdxId = "BSD-2-Clause";
192     fullName = ''BSD 2-clause "Simplified" License'';
193   };
195   bsd2Patent = {
196     spdxId = "BSD-2-Clause-Patent";
197     fullName = "BSD-2-Clause Plus Patent License";
198   };
200   bsd2WithViews = {
201     spdxId = "BSD-2-Clause-Views";
202     fullName = "BSD 2-Clause with views sentence";
203   };
205   bsd3 = {
206     spdxId = "BSD-3-Clause";
207     fullName = ''BSD 3-clause "New" or "Revised" License'';
208   };
210   bsd3Clear = {
211     spdxId = "BSD-3-Clause-Clear";
212     fullName = "BSD 3-Clause Clear License";
213   };
215   bsd3Lbnl = {
216     spdxId = "BSD-3-Clause-LBNL";
217     fullName = "Lawrence Berkeley National Labs BSD variant license";
218   };
220   bsdOriginal = {
221     spdxId = "BSD-4-Clause";
222     fullName = ''BSD 4-clause "Original" or "Old" License'';
223   };
225   bsdOriginalShortened = {
226     spdxId = "BSD-4-Clause-Shortened";
227     fullName = "BSD 4 Clause Shortened";
228   };
230   bsdOriginalUC = {
231     spdxId = "BSD-4-Clause-UC";
232     fullName = "BSD 4-Clause University of California-Specific";
233   };
235   bsdProtection = {
236     spdxId = "BSD-Protection";
237     fullName = "BSD Protection License";
238   };
240   bsl11 = {
241     spdxId = "BUSL-1.1";
242     fullName = "Business Source License 1.1";
243     free = false;
244     redistributable = true;
245   };
247   caossl = {
248     fullName = "Computer Associates Open Source Licence Version 1.0";
249     url = "http://jxplorer.org/licence.html";
250   };
252   cal10 = {
253     spdxId = "CAL-1.0";
254     fullName = "Cryptographic Autonomy License version 1.0 (CAL-1.0)";
255   };
257   caldera = {
258     spdxId = "Caldera";
259     fullName = "Caldera License";
260   };
262   capec = {
263     fullName = "Common Attack Pattern Enumeration and Classification";
264     url = "https://capec.mitre.org/about/termsofuse.html";
265   };
267   clArtistic = {
268     spdxId = "ClArtistic";
269     fullName = "Clarified Artistic License";
270   };
272   cc0 = {
273     spdxId = "CC0-1.0";
274     fullName = "Creative Commons Zero v1.0 Universal";
275   };
277   cc-by-nc-nd-30 = {
278     spdxId = "CC-BY-NC-ND-3.0";
279     fullName = "Creative Commons Attribution Non Commercial No Derivative Works 3.0 Unported";
280     free = false;
281   };
283   cc-by-nc-nd-40 = {
284     spdxId = "CC-BY-NC-ND-4.0";
285     fullName = "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International";
286     free = false;
287   };
289   cc-by-nc-sa-20 = {
290     spdxId = "CC-BY-NC-SA-2.0";
291     fullName = "Creative Commons Attribution Non Commercial Share Alike 2.0";
292     free = false;
293   };
295   cc-by-nc-sa-25 = {
296     spdxId = "CC-BY-NC-SA-2.5";
297     fullName = "Creative Commons Attribution Non Commercial Share Alike 2.5";
298     free = false;
299   };
301   cc-by-nc-sa-30 = {
302     spdxId = "CC-BY-NC-SA-3.0";
303     fullName = "Creative Commons Attribution Non Commercial Share Alike 3.0";
304     free = false;
305   };
307   cc-by-nc-sa-40 = {
308     spdxId = "CC-BY-NC-SA-4.0";
309     fullName = "Creative Commons Attribution Non Commercial Share Alike 4.0";
310     free = false;
311   };
313   cc-by-nc-30 = {
314     spdxId = "CC-BY-NC-3.0";
315     fullName = "Creative Commons Attribution Non Commercial 3.0 Unported";
316     free = false;
317   };
319   cc-by-nc-40 = {
320     spdxId = "CC-BY-NC-4.0";
321     fullName = "Creative Commons Attribution Non Commercial 4.0 International";
322     free = false;
323   };
325   cc-by-nd-30 = {
326     spdxId = "CC-BY-ND-3.0";
327     fullName = "Creative Commons Attribution-No Derivative Works v3.00";
328     free = false;
329   };
331   cc-by-nd-40 = {
332     spdxId = "CC-BY-ND-4.0";
333     fullName = "Creative Commons Attribution-No Derivative Works v4.0";
334     free = false;
335   };
337   cc-by-sa-10 = {
338     spdxId = "CC-BY-SA-1.0";
339     fullName = "Creative Commons Attribution Share Alike 1.0";
340   };
342   cc-by-sa-20 = {
343     spdxId = "CC-BY-SA-2.0";
344     fullName = "Creative Commons Attribution Share Alike 2.0";
345   };
347   cc-by-sa-25 = {
348     spdxId = "CC-BY-SA-2.5";
349     fullName = "Creative Commons Attribution Share Alike 2.5";
350   };
352   cc-by-10 = {
353     spdxId = "CC-BY-1.0";
354     fullName = "Creative Commons Attribution 1.0";
355   };
357   cc-by-20 = {
358     spdxId = "CC-BY-2.0";
359     fullName = "Creative Commons Attribution 2.0";
360   };
362   cc-by-30 = {
363     spdxId = "CC-BY-3.0";
364     fullName = "Creative Commons Attribution 3.0";
365   };
367   cc-by-sa-30 = {
368     spdxId = "CC-BY-SA-3.0";
369     fullName = "Creative Commons Attribution Share Alike 3.0";
370   };
372   cc-by-40 = {
373     spdxId = "CC-BY-4.0";
374     fullName = "Creative Commons Attribution 4.0";
375   };
377   cc-by-sa-40 = {
378     spdxId = "CC-BY-SA-4.0";
379     fullName = "Creative Commons Attribution Share Alike 4.0";
380   };
382   cc-sa-10 = {
383     shortName = "CC-SA-1.0";
384     fullName = "Creative Commons Share Alike 1.0";
385     url = "https://creativecommons.org/licenses/sa/1.0";
386   };
388   cddl = {
389     spdxId = "CDDL-1.0";
390     fullName = "Common Development and Distribution License 1.0";
391   };
393   cecill20 = {
394     spdxId = "CECILL-2.0";
395     fullName = "CeCILL Free Software License Agreement v2.0";
396   };
398   cecill21 = {
399     spdxId = "CECILL-2.1";
400     fullName = "CeCILL Free Software License Agreement v2.1";
401   };
403   cecill-b = {
404     spdxId = "CECILL-B";
405     fullName  = "CeCILL-B Free Software License Agreement";
406   };
408   cecill-c = {
409     spdxId = "CECILL-C";
410     fullName  = "CeCILL-C Free Software License Agreement";
411   };
413   cockroachdb-community-license = {
414     fullName = "CockroachDB Community License Agreement";
415     url = "https://www.cockroachlabs.com/cockroachdb-community-license/";
416     free = false;
417   };
419   cpal10 = {
420     spdxId = "CPAL-1.0";
421     fullName = "Common Public Attribution License 1.0";
422   };
424   commons-clause = {
425     fullName = "Commons Clause License";
426     url = "https://commonsclause.com/";
427     free = false;
428   };
430   cpl10 = {
431     spdxId = "CPL-1.0";
432     fullName = "Common Public License 1.0";
433   };
435   curl = {
436     spdxId = "curl";
437     fullName = "curl License";
438   };
440   doc = {
441     spdxId = "DOC";
442     fullName = "DOC License";
443   };
445   drl10 = {
446     spdxId = "DRL-1.0";
447     fullName = "Detection Rule License 1.0";
448   };
450   dtoa = {
451     spdxId = "dtoa";
452     fullName = "dtoa License";
453   };
455   eapl = {
456     fullName = "EPSON AVASYS PUBLIC LICENSE";
457     url = "https://avasys.jp/hp/menu000000700/hpg000000603.htm";
458     free = false;
459   };
461   ecl20 = {
462     fullName = "Educational Community License, Version 2.0";
463     shortName = "ECL 2.0";
464     spdxId = "ECL-2.0";
465   };
467   efl10 = {
468     spdxId = "EFL-1.0";
469     fullName = "Eiffel Forum License v1.0";
470   };
472   efl20 = {
473     spdxId = "EFL-2.0";
474     fullName = "Eiffel Forum License v2.0";
475   };
477   elastic20 = {
478     spdxId = "Elastic-2.0";
479     fullName = "Elastic License 2.0";
480     free = false;
481   };
483   epl10 = {
484     spdxId = "EPL-1.0";
485     fullName = "Eclipse Public License 1.0";
486   };
488   epl20 = {
489     spdxId = "EPL-2.0";
490     fullName = "Eclipse Public License 2.0";
491   };
493   epson = {
494     fullName = "Seiko Epson Corporation Software License Agreement for Linux";
495     url = "https://download.ebz.epson.net/dsc/du/02/eula/global/LINUX_EN.html";
496     free = false;
497   };
499   eupl11 = {
500     spdxId = "EUPL-1.1";
501     fullName = "European Union Public License 1.1";
502   };
504   eupl12 = {
505     spdxId = "EUPL-1.2";
506     fullName = "European Union Public License 1.2";
507   };
509   fdl11Only = {
510     spdxId = "GFDL-1.1-only";
511     fullName = "GNU Free Documentation License v1.1 only";
512   };
514   fdl11Plus = {
515     spdxId = "GFDL-1.1-or-later";
516     fullName = "GNU Free Documentation License v1.1 or later";
517   };
519   fdl12Only = {
520     spdxId = "GFDL-1.2-only";
521     fullName = "GNU Free Documentation License v1.2 only";
522   };
524   fdl12Plus = {
525     spdxId = "GFDL-1.2-or-later";
526     fullName = "GNU Free Documentation License v1.2 or later";
527   };
529   fdl13Only = {
530     spdxId = "GFDL-1.3-only";
531     fullName = "GNU Free Documentation License v1.3 only";
532   };
534   fdl13Plus = {
535     spdxId = "GFDL-1.3-or-later";
536     fullName = "GNU Free Documentation License v1.3 or later";
537   };
539   ffsl = {
540     fullName = "Floodgap Free Software License";
541     url = "https://www.floodgap.com/software/ffsl/license.html";
542     free = false;
543   };
545   fraunhofer-fdk = {
546     fullName = "Fraunhofer FDK AAC Codec Library";
547     spdxId = "FDK-AAC";
548   };
550   free = {
551     fullName = "Unspecified free software license";
552   };
554   fsl11Mit = {
555     fullName = "Functional Source License, Version 1.1, MIT Future License";
556     url = "https://fsl.software/FSL-1.1-MIT.template.md";
557     free = false;
558     redistributable = true;
559   };
561   fsl11Asl20 = {
562     fullName = "Functional Source License, Version 1.1, Apache 2.0 Future License";
563     url = "https://fsl.software/FSL-1.1-Apache-2.0.template.md";
564     free = false;
565     redistributable = true;
566   };
568   ftl = {
569     spdxId = "FTL";
570     fullName = "Freetype Project License";
571   };
573   g4sl = {
574     fullName = "Geant4 Software License";
575     url = "https://geant4.web.cern.ch/geant4/license/LICENSE.html";
576   };
578   geogebra = {
579     fullName = "GeoGebra Non-Commercial License Agreement";
580     url = "https://www.geogebra.org/license";
581     free = false;
582   };
584   generaluser = {
585     fullName = "GeneralUser GS License v2.0";
586     url = "https://www.schristiancollins.com/generaluser.php"; # license included in sources
587   };
589   gfl = {
590     fullName = "GUST Font License";
591     url = "https://www.gust.org.pl/projects/e-foundry/licenses/GUST-FONT-LICENSE.txt";
592   };
594   gfsl = {
595     fullName = "GUST Font Source License";
596     url = "https://www.gust.org.pl/projects/e-foundry/licenses/GUST-FONT-SOURCE-LICENSE.txt";
597   };
599   gpl1Only = {
600     spdxId = "GPL-1.0-only";
601     fullName = "GNU General Public License v1.0 only";
602   };
604   gpl1Plus = {
605     spdxId = "GPL-1.0-or-later";
606     fullName = "GNU General Public License v1.0 or later";
607   };
609   gpl2Only = {
610     spdxId = "GPL-2.0-only";
611     fullName = "GNU General Public License v2.0 only";
612   };
614   gpl2Classpath = {
615     spdxId = "GPL-2.0-with-classpath-exception";
616     fullName = "GNU General Public License v2.0 only (with Classpath exception)";
617   };
619   gpl2ClasspathPlus = {
620     fullName = "GNU General Public License v2.0 or later (with Classpath exception)";
621     url = "https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception";
622   };
624   gpl2Oss = {
625     fullName = "GNU General Public License version 2 only (with OSI approved licenses linking exception)";
626     url = "https://www.mysql.com/about/legal/licensing/foss-exception";
627   };
629   gpl2Plus = {
630     spdxId = "GPL-2.0-or-later";
631     fullName = "GNU General Public License v2.0 or later";
632   };
634   gpl3Only = {
635     spdxId = "GPL-3.0-only";
636     fullName = "GNU General Public License v3.0 only";
637   };
639   gpl3Plus = {
640     spdxId = "GPL-3.0-or-later";
641     fullName = "GNU General Public License v3.0 or later";
642   };
644   gpl3ClasspathPlus = {
645     fullName = "GNU General Public License v3.0 or later (with Classpath exception)";
646     url = "https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception";
647   };
649   giftware = {
650     spdxId = "Giftware";
651     fullName = "Giftware License";
652   };
654   hpnd = {
655     spdxId = "HPND";
656     fullName = "Historic Permission Notice and Disclaimer";
657   };
659   hpndSellVariant = {
660     fullName = "Historical Permission Notice and Disclaimer - sell variant";
661     spdxId = "HPND-sell-variant";
662   };
664   hpndUc = {
665     spdxId = "HPND-UC";
666     fullName = "Historical Permission Notice and Disclaimer - University of California variant";
667   };
669   # Intel's license, seems free
670   iasl = {
671     spdxId = "Intel-ACPI";
672     fullName = "Intel ACPI Software License Agreement";
673   };
675   icu = {
676     spdxId = "ICU";
677     fullName = "ICU";
678   };
680   ijg = {
681     spdxId = "IJG";
682     fullName = "Independent JPEG Group License";
683   };
685   imagemagick = {
686     fullName = "ImageMagick License";
687     spdxId = "ImageMagick";
688   };
690   imlib2 = {
691     spdxId = "Imlib2";
692     fullName = "Imlib2 License";
693   };
695   info-zip = {
696     spdxId = "Info-ZIP";
697     fullName = "Info-ZIP License";
698   };
700   inria-compcert = {
701     fullName  = "INRIA Non-Commercial License Agreement for the CompCert verified compiler";
702     url       = "https://compcert.org/doc/LICENSE.txt";
703     free      = false;
704   };
706   inria-icesl = {
707     fullName = "End User License Agreement for IceSL Software";
708     url      = "https://icesl.loria.fr/assets/pdf/EULA_IceSL_binary.pdf";
709     free     = false;
710   };
712   inria-zelus = {
713     fullName = "INRIA Non-Commercial License Agreement for the Zélus compiler";
714     url = "https://github.com/INRIA/zelus/raw/829f2b97cba93b0543a9ca0272269e6b8fdad356/LICENSE";
715     free = false;
716   };
718   ipa = {
719     spdxId = "IPA";
720     fullName = "IPA Font License";
721   };
723   ipl10 = {
724     spdxId = "IPL-1.0";
725     fullName = "IBM Public License v1.0";
726   };
728   isc = {
729     spdxId = "ISC";
730     fullName = "ISC License";
731   };
733   databricks = {
734     fullName = "Databricks License";
735     url = "https://www.databricks.com/legal/db-license";
736     free = false;
737   };
739   databricks-dbx = {
740     fullName = "DataBricks eXtensions aka dbx License";
741     url = "https://github.com/databrickslabs/dbx/blob/743b579a4ac44531f764c6e522dbe5a81a7dc0e4/LICENSE";
742     free = false;
743     redistributable = false;
744   };
746   databricks-license = {
747     fullName = "Databricks License";
748     url = "https://www.databricks.com/legal/db-license";
749     free = false;
750   };
752   fair = {
753     fullName = "Fair License";
754     spdxId = "Fair";
755     free = true;
756   };
758   fairsource09 = {
759     fullName = "Fair Source License, version 0.9";
760     url = "https://fair.io/v0.9.txt";
761     free = false;
762     redistributable = true;
763   };
765   hl3 = {
766     fullName = "Hippocratic License v3.0";
767     url = "https://firstdonoharm.dev/version/3/0/core.txt";
768     free = false;
769     redistributable = true;
770   };
772   issl = {
773     fullName = "Intel Simplified Software License";
774     url = "https://software.intel.com/en-us/license/intel-simplified-software-license";
775     free = false;
776   };
778   knuth = {
779     fullName = "Knuth CTAN License";
780     spdxId = "Knuth-CTAN";
781   };
783   lal12 = {
784     spdxId = "LAL-1.2";
785     fullName = "Licence Art Libre 1.2";
786   };
788   lal13 = {
789     spdxId = "LAL-1.3";
790     fullName = "Licence Art Libre 1.3";
791   };
793   lens = {
794     fullName = "Lens Terms of Service Agreement";
795     url = "https://k8slens.dev/licenses/tos";
796     free = false;
797   };
799   lgpl2Only = {
800     spdxId = "LGPL-2.0-only";
801     fullName = "GNU Library General Public License v2 only";
802   };
804   lgpl2Plus = {
805     spdxId = "LGPL-2.0-or-later";
806     fullName = "GNU Library General Public License v2 or later";
807   };
809   lgpl21Only = {
810     spdxId = "LGPL-2.1-only";
811     fullName = "GNU Lesser General Public License v2.1 only";
812   };
814   lgpl21Plus = {
815     spdxId = "LGPL-2.1-or-later";
816     fullName = "GNU Lesser General Public License v2.1 or later";
817   };
819   lgpl3Only = {
820     spdxId = "LGPL-3.0-only";
821     fullName = "GNU Lesser General Public License v3.0 only";
822   };
824   lgpl3Plus = {
825     spdxId = "LGPL-3.0-or-later";
826     fullName = "GNU Lesser General Public License v3.0 or later";
827   };
829   lgpllr = {
830     spdxId = "LGPLLR";
831     fullName = "Lesser General Public License For Linguistic Resources";
832   };
834   libpng = {
835     spdxId = "Libpng";
836     fullName = "libpng License";
837   };
839   libpng2 = {
840     spdxId = "libpng-2.0"; # Used since libpng 1.6.36.
841     fullName = "PNG Reference Library version 2";
842   };
844   libtiff = {
845     spdxId = "libtiff";
846     fullName = "libtiff License";
847   };
849   llgpl21 = {
850     fullName = "Lisp LGPL; GNU Lesser General Public License version 2.1 with Franz Inc. preamble for clarification of LGPL terms in context of Lisp";
851     url = "https://opensource.franz.com/preamble.html";
852   };
854   lppl1 = {
855     spdxId = "LPPL-1.0";
856     fullName = "LaTeX Project Public License v1.0";
857   };
859   lppl12 = {
860     spdxId = "LPPL-1.2";
861     fullName = "LaTeX Project Public License v1.2";
862   };
864   lppl13a = {
865     spdxId = "LPPL-1.3a";
866     fullName = "LaTeX Project Public License v1.3a";
867   };
869   lppl13c = {
870     spdxId = "LPPL-1.3c";
871     fullName = "LaTeX Project Public License v1.3c";
872   };
874   lpl-102 = {
875     spdxId = "LPL-1.02";
876     fullName = "Lucent Public License v1.02";
877   };
879   miros = {
880     spdxId = "MirOS";
881     fullName = "MirOS License";
882   };
884   mit = {
885     spdxId = "MIT";
886     fullName = "MIT License";
887   };
889   mit-cmu = {
890     spdxId = "MIT-CMU";
891     fullName = "CMU License";
892   };
894   mit-feh = {
895     spdxId = "MIT-feh";
896     fullName = "feh License";
897   };
899   mit-modern = {
900     # Also known as Zsh license
901     spdxId = "MIT-Modern-Variant";
902     fullName = "MIT License Modern Variant";
903   };
905   mitAdvertising = {
906     spdxId = "MIT-advertising";
907     fullName = "Enlightenment License (e16)";
908   };
910   mit0 = {
911     spdxId = "MIT-0";
912     fullName = "MIT No Attribution";
913   };
915   mpl10 = {
916     spdxId = "MPL-1.0";
917     fullName = "Mozilla Public License 1.0";
918   };
920   mpl11 = {
921     spdxId = "MPL-1.1";
922     fullName = "Mozilla Public License 1.1";
923   };
925   mpl20 = {
926     spdxId = "MPL-2.0";
927     fullName = "Mozilla Public License 2.0";
928   };
930   mplus = {
931     spdxId = "mplus";
932     fullName = "M+ Font License";
933   };
935   mspl = {
936     spdxId = "MS-PL";
937     fullName = "Microsoft Public License";
938   };
940   mulan-psl2 = {
941     spdxId = "MulanPSL-2.0";
942     fullName = "Mulan Permissive Software License, Version 2";
943   };
945   naist-2003 = {
946     spdxId = "NAIST-2003";
947     fullName = "Nara Institute of Science and Technology License (2003)";
948   };
950   nasa13 = {
951     spdxId = "NASA-1.3";
952     fullName = "NASA Open Source Agreement 1.3";
953     free = false;
954   };
956   ncbiPd = {
957     spdxId = "NCBI-PD";
958     fullName = "NCBI Public Domain Notice";
959     # Due to United States copyright law, anything with this "license" does not have a copyright in the
960     # jurisdiction of the United States. However, other jurisdictions may assign the United States
961     # government copyright to the work, and the license explicitly states that in such a case, no license
962     # is granted. This is nonfree and nonredistributable in most jurisdictions other than the United States.
963     free = false;
964     redistributable = false;
965   };
967   ncsa = {
968     spdxId = "NCSA";
969     fullName = "University of Illinois/NCSA Open Source License";
970   };
972   ncul1 = {
973     spdxId = "NCUL1";
974     fullName = "Netdata Cloud UI License v1.0";
975     free = false;
976     redistributable = true; # Only if used in Netdata products.
977   };
979   nistSoftware = {
980     spdxId = "NIST-Software";
981     fullName = "NIST Software License";
982   };
984   nlpl = {
985     spdxId = "NLPL";
986     fullName = "No Limit Public License";
987   };
989   nposl3 = {
990     spdxId = "NPOSL-3.0";
991     fullName = "Non-Profit Open Software License 3.0";
992   };
994   nvidiaCuda = {
995     shortName = "CUDA EULA";
996     fullName = "CUDA Toolkit End User License Agreement (EULA)";
997     url = "https://docs.nvidia.com/cuda/eula/index.html#cuda-toolkit-supplement-license-agreement";
998     free = false;
999   };
1001   nvidiaCudaRedist = {
1002     shortName = "CUDA EULA";
1003     fullName = "CUDA Toolkit End User License Agreement (EULA)";
1004     url = "https://docs.nvidia.com/cuda/eula/index.html#cuda-toolkit-supplement-license-agreement";
1005     free = false;
1006     redistributable = true;
1007   };
1009   obsidian = {
1010     fullName = "Obsidian End User Agreement";
1011     url = "https://obsidian.md/eula";
1012     free = false;
1013   };
1015   ocamlLgplLinkingException = {
1016     spdxId = "OCaml-LGPL-linking-exception";
1017     fullName = "OCaml LGPL Linking Exception";
1018   };
1020   ocamlpro_nc = {
1021     fullName = "OCamlPro Non Commercial license version 1";
1022     url = "https://alt-ergo.ocamlpro.com/http/alt-ergo-2.2.0/OCamlPro-Non-Commercial-License.pdf";
1023     free = false;
1024   };
1026   odbl = {
1027     spdxId = "ODbL-1.0";
1028     fullName = "Open Data Commons Open Database License v1.0";
1029   };
1031   ofl = {
1032     spdxId = "OFL-1.1";
1033     fullName = "SIL Open Font License 1.1";
1034   };
1036   oml = {
1037     spdxId = "OML";
1038     fullName = "Open Market License";
1039   };
1041   openldap = {
1042     spdxId = "OLDAP-2.8";
1043     fullName = "Open LDAP Public License v2.8";
1044   };
1046   openssl = {
1047     spdxId = "OpenSSL";
1048     fullName = "OpenSSL License";
1049   };
1051   opubl = {
1052     spdxId = "OPUBL-1.0";
1053     fullName = "Open Publication License v1.0";
1054   };
1056   osl2 = {
1057     spdxId = "OSL-2.0";
1058     fullName = "Open Software License 2.0";
1059   };
1061   osl21 = {
1062     spdxId = "OSL-2.1";
1063     fullName = "Open Software License 2.1";
1064   };
1066   osl3 = {
1067     spdxId = "OSL-3.0";
1068     fullName = "Open Software License 3.0";
1069   };
1071   parity70 = {
1072     spdxId = "Parity-7.0.0";
1073     fullName = "Parity Public License 7.0.0";
1074   };
1076   php301 = {
1077     spdxId = "PHP-3.01";
1078     fullName = "PHP License v3.01";
1079   };
1081   postgresql = {
1082     spdxId = "PostgreSQL";
1083     fullName = "PostgreSQL License";
1084   };
1086   postman = {
1087     fullName = "Postman EULA";
1088     url = "https://www.getpostman.com/licenses/postman_base_app";
1089     free = false;
1090   };
1092   psfl = {
1093     spdxId = "Python-2.0";
1094     fullName = "Python Software Foundation License version 2";
1095   };
1097   publicDomain = {
1098     fullName = "Public Domain";
1099   };
1101   purdueBsd = {
1102     fullName = "Purdue BSD-Style License"; # also known as lsof license
1103     url = "https://enterprise.dejacode.com/licenses/public/purdue-bsd";
1104   };
1106   prosperity30 = {
1107     fullName = "Prosperity-3.0.0";
1108     free = false;
1109     url = "https://prosperitylicense.com/versions/3.0.0.html";
1110   };
1112   qhull = {
1113     spdxId = "Qhull";
1114     fullName = "Qhull License";
1115   };
1117   qpl = {
1118     spdxId = "QPL-1.0";
1119     fullName = "Q Public License 1.0";
1120   };
1122   qwt = {
1123     fullName = "Qwt License, Version 1.0";
1124     url = "https://qwt.sourceforge.io/qwtlicense.html";
1125   };
1127   radiance = {
1128     fullName = "The Radiance Software License, Version 2.0";
1129     url = "https://github.com/LBNL-ETA/Radiance/blob/master/License.txt";
1130   };
1132   ruby = {
1133     spdxId = "Ruby";
1134     fullName = "Ruby License";
1135   };
1137   sendmail = {
1138     spdxId = "Sendmail";
1139     fullName = "Sendmail License";
1140   };
1142   sgi-b-20 = {
1143     spdxId = "SGI-B-2.0";
1144     fullName = "SGI Free Software License B v2.0";
1145   };
1147   # Gentoo seems to treat it as a license:
1148   # https://gitweb.gentoo.org/repo/gentoo.git/tree/licenses/SGMLUG?id=7d999af4a47bf55e53e54713d98d145f935935c1
1149   sgmlug = {
1150     fullName = "SGML UG SGML Parser Materials license";
1151   };
1153   sleepycat = {
1154     spdxId = "Sleepycat";
1155     fullName = "Sleepycat License";
1156   };
1158   smail = {
1159     shortName = "smail";
1160     fullName = "SMAIL General Public License";
1161     url = "https://sources.debian.org/copyright/license/debianutils/4.9.1/";
1162   };
1164   smlnj = {
1165     spdxId = "SMLNJ";
1166     fullName = "Standard ML of New Jersey License";
1167   };
1169   sspl = {
1170     shortName = "SSPL";
1171     fullName = "Server Side Public License";
1172     url = "https://www.mongodb.com/licensing/server-side-public-license";
1173     free = false;
1174     # NOTE Debatable.
1175     # The license a slightly modified AGPL but still considered unfree by the
1176     # OSI for what seem like political reasons
1177     redistributable = true; # Definitely redistributable though, it's an AGPL derivative
1178   };
1180   stk = {
1181     shortName = "stk";
1182     fullName = "Synthesis Tool Kit 4.3";
1183     url = "https://github.com/thestk/stk/blob/master/LICENSE";
1184   };
1186   sudo = {
1187     shortName = "sudo";
1188     fullName = "Sudo License (ISC-style)";
1189     url = "https://www.sudo.ws/about/license/";
1190   };
1192   sustainableUse = {
1193     shortName = "sustainable";
1194     fullName = "Sustainable Use License";
1195     url = "https://github.com/n8n-io/n8n/blob/master/LICENSE.md";
1196     free = false;
1197     redistributable = false; # only free to redistribute "for non-commercial purposes"
1198   };
1200   tsl = {
1201     shortName = "TSL";
1202     fullName = "Timescale License Agreegment";
1203     url = "https://github.com/timescale/timescaledb/blob/main/tsl/LICENSE-TIMESCALE";
1204     free = false;
1205   };
1207   tcltk = {
1208     spdxId = "TCL";
1209     fullName = "TCL/TK License";
1210   };
1212   tost = {
1213     fullName = "Tomorrow Open Source Technology License 1.0";
1214     url = "https://github.com/PixarAnimationStudios/OpenUSD/blob/release/LICENSE.txt";
1215   };
1217   ucd = {
1218     fullName = "Unicode Character Database License";
1219     url = "https://fedoraproject.org/wiki/Licensing:UCD";
1220   };
1222   ufl = {
1223     spdxId = "Ubuntu-font-1.0";
1224     fullName = "Ubuntu Font License 1.0";
1225   };
1227   unfree = {
1228     fullName = "Unfree";
1229     free = false;
1230   };
1232   unfreeRedistributable = {
1233     fullName = "Unfree redistributable";
1234     free = false;
1235     redistributable = true;
1236   };
1238   unfreeRedistributableFirmware = {
1239     fullName = "Unfree redistributable firmware";
1240     redistributable = true;
1241     # Note: we currently consider these "free" for inclusion in the
1242     # channel and NixOS images.
1243   };
1245   unicode-30 = {
1246     spdxId = "Unicode-3.0";
1247     fullName = "Unicode License v3";
1248   };
1250   unicode-dfs-2015 = {
1251     spdxId = "Unicode-DFS-2015";
1252     fullName = "Unicode License Agreement - Data Files and Software (2015)";
1253   };
1255   unicode-dfs-2016 = {
1256     spdxId = "Unicode-DFS-2016";
1257     fullName = "Unicode License Agreement - Data Files and Software (2016)";
1258   };
1260   unlicense = {
1261     spdxId = "Unlicense";
1262     fullName = "The Unlicense";
1263   };
1265   upl = {
1266     spdxId = "UPL-1.0";
1267     fullName = "Universal Permissive License";
1268   };
1270   vim = {
1271     spdxId = "Vim";
1272     fullName = "Vim License";
1273   };
1275   virtualbox-puel = {
1276     fullName = "Oracle VM VirtualBox Extension Pack Personal Use and Evaluation License (PUEL)";
1277     url = "https://www.virtualbox.org/wiki/VirtualBox_PUEL";
1278     free = false;
1279   };
1281   vol-sl = {
1282     fullName = "Volatility Software License, Version 1.0";
1283     url = "https://www.volatilityfoundation.org/license/vsl-v1.0";
1284   };
1286   vsl10 = {
1287     spdxId = "VSL-1.0";
1288     fullName = "Vovida Software License v1.0";
1289   };
1291   watcom = {
1292     spdxId = "Watcom-1.0";
1293     fullName = "Sybase Open Watcom Public License 1.0";
1294     # Despite being OSI‐approved, this licence is not considered FOSS
1295     # by Debian, Fedora, or the FSF, due to an onerous restriction that
1296     # requires publication of even privately‐deployed modifications.
1297     # This violates the FSF’s freedom 3 and Debian’s “desert island
1298     # test” and “dissident test”.
1299     #
1300     # See: <https://en.wikipedia.org/wiki/Sybase_Open_Watcom_Public_License>
1301     free = false;
1302     redistributable = true;
1303   };
1305   w3c = {
1306     spdxId = "W3C";
1307     fullName = "W3C Software Notice and License";
1308   };
1310   wadalab = {
1311     fullName = "Wadalab Font License";
1312     url = "https://fedoraproject.org/wiki/Licensing:Wadalab?rd=Licensing/Wadalab";
1313   };
1315   wtfpl = {
1316     spdxId = "WTFPL";
1317     fullName = "Do What The F*ck You Want To Public License";
1318   };
1320   wxWindows = {
1321     spdxId = "wxWindows";
1322     fullName = "wxWindows Library Licence, Version 3.1";
1323   };
1325   x11 = {
1326     spdxId = "X11";
1327     fullName = "X11 License";
1328   };
1330   xfig = {
1331     spdxId = "Xfig";
1332     fullName = "xfig";
1333   };
1335   xinetd = {
1336     spdxId = "xinetd";
1337     fullName = "xinetd License";
1338   };
1340   xskat = {
1341     spdxId = "XSkat";
1342     fullName = "XSkat License";
1343   };
1345   zlib = {
1346     spdxId = "Zlib";
1347     fullName = "zlib License";
1348   };
1350   zpl20 = {
1351     spdxId = "ZPL-2.0";
1352     fullName = "Zope Public License 2.0";
1353   };
1355   zpl21 = {
1356     spdxId = "ZPL-2.1";
1357     fullName = "Zope Public License 2.1";
1358   };
1360 } // {
1361   # TODO: remove legacy aliases
1362   apsl10 = {
1363     # deprecated for consistency with `apple-psl20`; use `apple-psl10`
1364     spdxId = "APSL-1.0";
1365     fullName = "Apple Public Source License 1.0";
1366     deprecated = true;
1367   };
1368   apsl20 = {
1369     # deprecated due to confusion with Apache-2.0; use `apple-psl20`
1370     spdxId = "APSL-2.0";
1371     fullName = "Apple Public Source License 2.0";
1372     deprecated = true;
1373   };
1374   gpl2 = {
1375     spdxId = "GPL-2.0";
1376     fullName = "GNU General Public License v2.0";
1377     deprecated = true;
1378   };
1379   gpl3 = {
1380     spdxId = "GPL-3.0";
1381     fullName = "GNU General Public License v3.0";
1382     deprecated = true;
1383   };
1384   lgpl2 = {
1385     spdxId = "LGPL-2.0";
1386     fullName = "GNU Library General Public License v2";
1387     deprecated = true;
1388   };
1389   lgpl21 = {
1390     spdxId = "LGPL-2.1";
1391     fullName = "GNU Lesser General Public License v2.1";
1392     deprecated = true;
1393   };
1394   lgpl3 = {
1395     spdxId = "LGPL-3.0";
1396     fullName = "GNU Lesser General Public License v3.0";
1397     deprecated = true;
1398   };