chromium,chromedriver: 128.0.6613.137 -> 129.0.6668.58 (#342721)
[NixPkgs.git] / lib / licenses.nix
blob84b2597760fd7e7eae9a9d4a9cc6af629b768e7c
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   aom = {
96     fullName = "Alliance for Open Media Patent License 1.0";
97     url = "https://aomedia.org/license/patent-license/";
98   };
100   apple-psl10 = {
101     spdxId = "APSL-1.0";
102     fullName = "Apple Public Source License 1.0";
103   };
105   apple-psl20 = {
106     spdxId = "APSL-2.0";
107     fullName = "Apple Public Source License 2.0";
108   };
110   arphicpl = {
111     spdxId = "Arphic-1999";
112     fullName = "Arphic Public License";
113     url = "https://www.freedesktop.org/wiki/Arphic_Public_License/";
114   };
116   artistic1 = {
117     spdxId = "Artistic-1.0";
118     fullName = "Artistic License 1.0";
119   };
121   artistic1-cl8 = {
122     spdxId = "Artistic-1.0-cl8";
123     fullName = "Artistic License 1.0 w/clause 8";
124   };
126   artistic2 = {
127     spdxId = "Artistic-2.0";
128     fullName = "Artistic License 2.0";
129   };
131   asl20 = {
132     spdxId = "Apache-2.0";
133     fullName = "Apache License 2.0";
134   };
136   asl20-llvm = {
137     spdxId = "Apache-2.0 WITH LLVM-exception";
138     fullName = "Apache License 2.0 with LLVM Exceptions";
139   };
141   bitstreamVera = {
142     spdxId = "Bitstream-Vera";
143     fullName = "Bitstream Vera Font License";
144   };
146   bitTorrent10 = {
147      spdxId = "BitTorrent-1.0";
148      fullName = " BitTorrent Open Source License v1.0";
149   };
151   bitTorrent11 = {
152     spdxId = "BitTorrent-1.1";
153     fullName = " BitTorrent Open Source License v1.1";
154   };
156   bola11 = {
157     url = "https://blitiri.com.ar/p/bola/";
158     fullName = "Buena Onda License Agreement 1.1";
159   };
161   boost = {
162     spdxId = "BSL-1.0";
163     fullName = "Boost Software License 1.0";
164   };
166   beerware = {
167     spdxId = "Beerware";
168     fullName = "Beerware License";
169   };
171   blueOak100 = {
172     spdxId = "BlueOak-1.0.0";
173     fullName = "Blue Oak Model License 1.0.0";
174   };
176   bsd0 = {
177     spdxId = "0BSD";
178     fullName = "BSD Zero Clause License";
179   };
181   bsd1 = {
182     spdxId = "BSD-1-Clause";
183     fullName = "BSD 1-Clause License";
184   };
186   bsd2 = {
187     spdxId = "BSD-2-Clause";
188     fullName = ''BSD 2-clause "Simplified" License'';
189   };
191   bsd2Patent = {
192     spdxId = "BSD-2-Clause-Patent";
193     fullName = "BSD-2-Clause Plus Patent License";
194   };
196   bsd2WithViews = {
197     spdxId = "BSD-2-Clause-Views";
198     fullName = "BSD 2-Clause with views sentence";
199   };
201   bsd3 = {
202     spdxId = "BSD-3-Clause";
203     fullName = ''BSD 3-clause "New" or "Revised" License'';
204   };
206   bsd3Clear = {
207     spdxId = "BSD-3-Clause-Clear";
208     fullName = "BSD 3-Clause Clear License";
209   };
211   bsdOriginal = {
212     spdxId = "BSD-4-Clause";
213     fullName = ''BSD 4-clause "Original" or "Old" License'';
214   };
216   bsdOriginalShortened = {
217     spdxId = "BSD-4-Clause-Shortened";
218     fullName = "BSD 4 Clause Shortened";
219   };
221   bsdOriginalUC = {
222     spdxId = "BSD-4-Clause-UC";
223     fullName = "BSD 4-Clause University of California-Specific";
224   };
226   bsdProtection = {
227     spdxId = "BSD-Protection";
228     fullName = "BSD Protection License";
229   };
231   bsl11 = {
232     spdxId = "BUSL-1.1";
233     fullName = "Business Source License 1.1";
234     url = "https://mariadb.com/bsl11";
235     free = false;
236     redistributable = true;
237   };
239   caossl = {
240     fullName = "Computer Associates Open Source Licence Version 1.0";
241     url = "http://jxplorer.org/licence.html";
242   };
244   cal10 = {
245     spdxId = "CAL-1.0";
246     fullName = "Cryptographic Autonomy License version 1.0 (CAL-1.0)";
247     url = "https://opensource.org/licenses/CAL-1.0";
248   };
250   caldera = {
251     spdxId = "Caldera";
252     fullName = "Caldera License";
253     url = "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf";
254   };
256   capec = {
257     fullName = "Common Attack Pattern Enumeration and Classification";
258     url = "https://capec.mitre.org/about/termsofuse.html";
259   };
261   clArtistic = {
262     spdxId = "ClArtistic";
263     fullName = "Clarified Artistic License";
264   };
266   cc0 = {
267     spdxId = "CC0-1.0";
268     fullName = "Creative Commons Zero v1.0 Universal";
269   };
271   cc-by-nc-nd-30 = {
272     spdxId = "CC-BY-NC-ND-3.0";
273     fullName = "Creative Commons Attribution Non Commercial No Derivative Works 3.0 Unported";
274     free = false;
275   };
277   cc-by-nc-nd-40 = {
278     spdxId = "CC-BY-NC-ND-4.0";
279     fullName = "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International";
280     free = false;
281   };
283   cc-by-nc-sa-20 = {
284     spdxId = "CC-BY-NC-SA-2.0";
285     fullName = "Creative Commons Attribution Non Commercial Share Alike 2.0";
286     free = false;
287   };
289   cc-by-nc-sa-25 = {
290     spdxId = "CC-BY-NC-SA-2.5";
291     fullName = "Creative Commons Attribution Non Commercial Share Alike 2.5";
292     free = false;
293   };
295   cc-by-nc-sa-30 = {
296     spdxId = "CC-BY-NC-SA-3.0";
297     fullName = "Creative Commons Attribution Non Commercial Share Alike 3.0";
298     free = false;
299   };
301   cc-by-nc-sa-40 = {
302     spdxId = "CC-BY-NC-SA-4.0";
303     fullName = "Creative Commons Attribution Non Commercial Share Alike 4.0";
304     free = false;
305   };
307   cc-by-nc-30 = {
308     spdxId = "CC-BY-NC-3.0";
309     fullName = "Creative Commons Attribution Non Commercial 3.0 Unported";
310     free = false;
311   };
313   cc-by-nc-40 = {
314     spdxId = "CC-BY-NC-4.0";
315     fullName = "Creative Commons Attribution Non Commercial 4.0 International";
316     free = false;
317   };
319   cc-by-nd-30 = {
320     spdxId = "CC-BY-ND-3.0";
321     fullName = "Creative Commons Attribution-No Derivative Works v3.00";
322     free = false;
323   };
325   cc-by-nd-40 = {
326     spdxId = "CC-BY-ND-4.0";
327     fullName = "Creative Commons Attribution-No Derivative Works v4.0";
328     free = false;
329   };
331   cc-by-sa-10 = {
332     spdxId = "CC-BY-SA-1.0";
333     fullName = "Creative Commons Attribution Share Alike 1.0";
334   };
336   cc-by-sa-20 = {
337     spdxId = "CC-BY-SA-2.0";
338     fullName = "Creative Commons Attribution Share Alike 2.0";
339   };
341   cc-by-sa-25 = {
342     spdxId = "CC-BY-SA-2.5";
343     fullName = "Creative Commons Attribution Share Alike 2.5";
344   };
346   cc-by-10 = {
347     spdxId = "CC-BY-1.0";
348     fullName = "Creative Commons Attribution 1.0";
349   };
351   cc-by-20 = {
352     spdxId = "CC-BY-2.0";
353     fullName = "Creative Commons Attribution 2.0";
354   };
356   cc-by-30 = {
357     spdxId = "CC-BY-3.0";
358     fullName = "Creative Commons Attribution 3.0";
359   };
361   cc-by-sa-30 = {
362     spdxId = "CC-BY-SA-3.0";
363     fullName = "Creative Commons Attribution Share Alike 3.0";
364   };
366   cc-by-40 = {
367     spdxId = "CC-BY-4.0";
368     fullName = "Creative Commons Attribution 4.0";
369   };
371   cc-by-sa-40 = {
372     spdxId = "CC-BY-SA-4.0";
373     fullName = "Creative Commons Attribution Share Alike 4.0";
374   };
376   cc-sa-10 = {
377     shortName = "CC-SA-1.0";
378     fullName = "Creative Commons Share Alike 1.0";
379     url = "https://creativecommons.org/licenses/sa/1.0";
380   };
382   cddl = {
383     spdxId = "CDDL-1.0";
384     fullName = "Common Development and Distribution License 1.0";
385   };
387   cecill20 = {
388     spdxId = "CECILL-2.0";
389     fullName = "CeCILL Free Software License Agreement v2.0";
390   };
392   cecill21 = {
393     spdxId = "CECILL-2.1";
394     fullName = "CeCILL Free Software License Agreement v2.1";
395   };
397   cecill-b = {
398     spdxId = "CECILL-B";
399     fullName  = "CeCILL-B Free Software License Agreement";
400   };
402   cecill-c = {
403     spdxId = "CECILL-C";
404     fullName  = "CeCILL-C Free Software License Agreement";
405   };
407   cockroachdb-community-license = {
408     fullName = "CockroachDB Community License Agreement";
409     url = "https://www.cockroachlabs.com/cockroachdb-community-license/";
410     free = false;
411   };
413   cpal10 = {
414     spdxId = "CPAL-1.0";
415     fullName = "Common Public Attribution License 1.0";
416   };
418   commons-clause = {
419     fullName = "Commons Clause License";
420     url = "https://commonsclause.com/";
421     free = false;
422   };
424   cpl10 = {
425     spdxId = "CPL-1.0";
426     fullName = "Common Public License 1.0";
427   };
429   curl = {
430     spdxId = "curl";
431     fullName = "curl License";
432   };
434   doc = {
435     spdxId = "DOC";
436     fullName = "DOC License";
437   };
439   drl10 = {
440     spdxId = "DRL-1.0";
441     fullName = "Detection Rule License 1.0";
442   };
444   dtoa = {
445     spdxId = "dtoa";
446     fullName = "dtoa License";
447   };
449   eapl = {
450     fullName = "EPSON AVASYS PUBLIC LICENSE";
451     url = "https://avasys.jp/hp/menu000000700/hpg000000603.htm";
452     free = false;
453   };
455   ecl20 = {
456     fullName = "Educational Community License, Version 2.0";
457     url = "https://opensource.org/licenses/ECL-2.0";
458     shortName = "ECL 2.0";
459     spdxId = "ECL-2.0";
460   };
462   efl10 = {
463     spdxId = "EFL-1.0";
464     fullName = "Eiffel Forum License v1.0";
465   };
467   efl20 = {
468     spdxId = "EFL-2.0";
469     fullName = "Eiffel Forum License v2.0";
470   };
472   elastic20 = {
473     spdxId = "Elastic-2.0";
474     fullName = "Elastic License 2.0";
475     url = "https://github.com/elastic/elasticsearch/blob/main/licenses/ELASTIC-LICENSE-2.0.txt";
476     free = false;
477   };
479   epl10 = {
480     spdxId = "EPL-1.0";
481     fullName = "Eclipse Public License 1.0";
482   };
484   epl20 = {
485     spdxId = "EPL-2.0";
486     fullName = "Eclipse Public License 2.0";
487   };
489   epson = {
490     fullName = "Seiko Epson Corporation Software License Agreement for Linux";
491     url = "https://download.ebz.epson.net/dsc/du/02/eula/global/LINUX_EN.html";
492     free = false;
493   };
495   eupl11 = {
496     spdxId = "EUPL-1.1";
497     fullName = "European Union Public License 1.1";
498   };
500   eupl12 = {
501     spdxId = "EUPL-1.2";
502     fullName = "European Union Public License 1.2";
503   };
505   fdl11Only = {
506     spdxId = "GFDL-1.1-only";
507     fullName = "GNU Free Documentation License v1.1 only";
508   };
510   fdl11Plus = {
511     spdxId = "GFDL-1.1-or-later";
512     fullName = "GNU Free Documentation License v1.1 or later";
513   };
515   fdl12Only = {
516     spdxId = "GFDL-1.2-only";
517     fullName = "GNU Free Documentation License v1.2 only";
518   };
520   fdl12Plus = {
521     spdxId = "GFDL-1.2-or-later";
522     fullName = "GNU Free Documentation License v1.2 or later";
523   };
525   fdl13Only = {
526     spdxId = "GFDL-1.3-only";
527     fullName = "GNU Free Documentation License v1.3 only";
528   };
530   fdl13Plus = {
531     spdxId = "GFDL-1.3-or-later";
532     fullName = "GNU Free Documentation License v1.3 or later";
533   };
535   ffsl = {
536     fullName = "Floodgap Free Software License";
537     url = "https://www.floodgap.com/software/ffsl/license.html";
538     free = false;
539   };
541   fraunhofer-fdk = {
542     fullName = "Fraunhofer FDK AAC Codec Library";
543     spdxId = "FDK-AAC";
544   };
546   free = {
547     fullName = "Unspecified free software license";
548   };
550   fsl11Mit = {
551     fullName = "Functional Source License, Version 1.1, MIT Future License";
552     url = "https://fsl.software/FSL-1.1-MIT.template.md";
553     free = false;
554     redistributable = true;
555   };
557   fsl11Asl20 = {
558     fullName = "Functional Source License, Version 1.1, Apache 2.0 Future License";
559     url = "https://fsl.software/FSL-1.1-Apache-2.0.template.md";
560     free = false;
561     redistributable = true;
562   };
564   ftl = {
565     spdxId = "FTL";
566     fullName = "Freetype Project License";
567   };
569   g4sl = {
570     fullName = "Geant4 Software License";
571     url = "https://geant4.web.cern.ch/geant4/license/LICENSE.html";
572   };
574   geogebra = {
575     fullName = "GeoGebra Non-Commercial License Agreement";
576     url = "https://www.geogebra.org/license";
577     free = false;
578   };
580   generaluser = {
581     fullName = "GeneralUser GS License v2.0";
582     url = "https://www.schristiancollins.com/generaluser.php"; # license included in sources
583   };
585   gfl = {
586     fullName = "GUST Font License";
587     url = "https://www.gust.org.pl/projects/e-foundry/licenses/GUST-FONT-LICENSE.txt";
588   };
590   gfsl = {
591     fullName = "GUST Font Source License";
592     url = "https://www.gust.org.pl/projects/e-foundry/licenses/GUST-FONT-SOURCE-LICENSE.txt";
593   };
595   gpl1Only = {
596     spdxId = "GPL-1.0-only";
597     fullName = "GNU General Public License v1.0 only";
598   };
600   gpl1Plus = {
601     spdxId = "GPL-1.0-or-later";
602     fullName = "GNU General Public License v1.0 or later";
603   };
605   gpl2Only = {
606     spdxId = "GPL-2.0-only";
607     fullName = "GNU General Public License v2.0 only";
608   };
610   gpl2Classpath = {
611     spdxId = "GPL-2.0-with-classpath-exception";
612     fullName = "GNU General Public License v2.0 only (with Classpath exception)";
613   };
615   gpl2ClasspathPlus = {
616     fullName = "GNU General Public License v2.0 or later (with Classpath exception)";
617     url = "https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception";
618   };
620   gpl2Oss = {
621     fullName = "GNU General Public License version 2 only (with OSI approved licenses linking exception)";
622     url = "https://www.mysql.com/about/legal/licensing/foss-exception";
623   };
625   gpl2Plus = {
626     spdxId = "GPL-2.0-or-later";
627     fullName = "GNU General Public License v2.0 or later";
628   };
630   gpl3Only = {
631     spdxId = "GPL-3.0-only";
632     fullName = "GNU General Public License v3.0 only";
633   };
635   gpl3Plus = {
636     spdxId = "GPL-3.0-or-later";
637     fullName = "GNU General Public License v3.0 or later";
638   };
640   gpl3ClasspathPlus = {
641     fullName = "GNU General Public License v3.0 or later (with Classpath exception)";
642     url = "https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception";
643   };
645   giftware = {
646     spdxId = "Giftware";
647     fullName = "Giftware License";
648   };
650   hpnd = {
651     spdxId = "HPND";
652     fullName = "Historic Permission Notice and Disclaimer";
653   };
655   hpndSellVariant = {
656     fullName = "Historical Permission Notice and Disclaimer - sell variant";
657     spdxId = "HPND-sell-variant";
658   };
660   hpndUc = {
661     spdxId = "HPND-UC";
662     fullName = "Historical Permission Notice and Disclaimer - University of California variant";
663   };
665   # Intel's license, seems free
666   iasl = {
667     spdxId = "Intel-ACPI";
668     fullName = "iASL";
669     url = "https://old.calculate-linux.org/packages/licenses/iASL";
670   };
672   icu = {
673     spdxId = "ICU";
674     fullName = "ICU";
675   };
677   ijg = {
678     spdxId = "IJG";
679     fullName = "Independent JPEG Group License";
680   };
682   imagemagick = {
683     fullName = "ImageMagick License";
684     spdxId = "ImageMagick";
685   };
687   imlib2 = {
688     spdxId = "Imlib2";
689     fullName = "Imlib2 License";
690   };
692   info-zip = {
693     spdxId = "Info-ZIP";
694     fullName = "Info-ZIP License";
695     url = "https://infozip.sourceforge.net/license.html";
696   };
698   inria-compcert = {
699     fullName  = "INRIA Non-Commercial License Agreement for the CompCert verified compiler";
700     url       = "https://compcert.org/doc/LICENSE.txt";
701     free      = false;
702   };
704   inria-icesl = {
705     fullName = "End User License Agreement for IceSL Software";
706     url      = "https://icesl.loria.fr/assets/pdf/EULA_IceSL_binary.pdf";
707     free     = false;
708   };
710   inria-zelus = {
711     fullName = "INRIA Non-Commercial License Agreement for the Zélus compiler";
712     url = "https://github.com/INRIA/zelus/raw/829f2b97cba93b0543a9ca0272269e6b8fdad356/LICENSE";
713     free = false;
714   };
716   ipa = {
717     spdxId = "IPA";
718     fullName = "IPA Font License";
719   };
721   ipl10 = {
722     spdxId = "IPL-1.0";
723     fullName = "IBM Public License v1.0";
724   };
726   isc = {
727     spdxId = "ISC";
728     fullName = "ISC License";
729   };
731   databricks = {
732     fullName = "Databricks License";
733     url = "https://www.databricks.com/legal/db-license";
734     free = false;
735   };
737   databricks-dbx = {
738     fullName = "DataBricks eXtensions aka dbx License";
739     url = "https://github.com/databrickslabs/dbx/blob/743b579a4ac44531f764c6e522dbe5a81a7dc0e4/LICENSE";
740     free = false;
741     redistributable = false;
742   };
744   databricks-license = {
745     fullName = "Databricks License";
746     url = "https://www.databricks.com/legal/db-license";
747     free = false;
748   };
750   fair = {
751     fullName = "Fair License";
752     spdxId = "Fair";
753     free = true;
754   };
756   fairsource09 = {
757     fullName = "Fair Source License, version 0.9";
758     url = "https://fair.io/v0.9.txt";
759     free = false;
760     redistributable = true;
761   };
763   hl3 = {
764     fullName = "Hippocratic License v3.0";
765     url = "https://firstdonoharm.dev/version/3/0/core.txt";
766     free = false;
767     redistributable = true;
768   };
770   issl = {
771     fullName = "Intel Simplified Software License";
772     url = "https://software.intel.com/en-us/license/intel-simplified-software-license";
773     free = false;
774   };
776   knuth = {
777     fullName = "Knuth CTAN License";
778     spdxId = "Knuth-CTAN";
779   };
781   lal12 = {
782     spdxId = "LAL-1.2";
783     fullName = "Licence Art Libre 1.2";
784   };
786   lal13 = {
787     spdxId = "LAL-1.3";
788     fullName = "Licence Art Libre 1.3";
789   };
791   lens = {
792     fullName = "Lens Terms of Service Agreement";
793     url = "https://k8slens.dev/licenses/tos";
794     free = false;
795   };
797   lgpl2Only = {
798     spdxId = "LGPL-2.0-only";
799     fullName = "GNU Library General Public License v2 only";
800   };
802   lgpl2Plus = {
803     spdxId = "LGPL-2.0-or-later";
804     fullName = "GNU Library General Public License v2 or later";
805   };
807   lgpl21Only = {
808     spdxId = "LGPL-2.1-only";
809     fullName = "GNU Lesser General Public License v2.1 only";
810   };
812   lgpl21Plus = {
813     spdxId = "LGPL-2.1-or-later";
814     fullName = "GNU Lesser General Public License v2.1 or later";
815   };
817   lgpl3Only = {
818     spdxId = "LGPL-3.0-only";
819     fullName = "GNU Lesser General Public License v3.0 only";
820   };
822   lgpl3Plus = {
823     spdxId = "LGPL-3.0-or-later";
824     fullName = "GNU Lesser General Public License v3.0 or later";
825   };
827   lgpllr = {
828     spdxId = "LGPLLR";
829     fullName = "Lesser General Public License For Linguistic Resources";
830   };
832   libpng = {
833     spdxId = "Libpng";
834     fullName = "libpng License";
835   };
837   libpng2 = {
838     spdxId = "libpng-2.0"; # Used since libpng 1.6.36.
839     fullName = "PNG Reference Library version 2";
840   };
842   libtiff = {
843     spdxId = "libtiff";
844     fullName = "libtiff License";
845   };
847   llgpl21 = {
848     fullName = "Lisp LGPL; GNU Lesser General Public License version 2.1 with Franz Inc. preamble for clarification of LGPL terms in context of Lisp";
849     url = "https://opensource.franz.com/preamble.html";
850   };
852   lppl1 = {
853     spdxId = "LPPL-1.0";
854     fullName = "LaTeX Project Public License v1.0";
855   };
857   lppl12 = {
858     spdxId = "LPPL-1.2";
859     fullName = "LaTeX Project Public License v1.2";
860   };
862   lppl13a = {
863     spdxId = "LPPL-1.3a";
864     fullName = "LaTeX Project Public License v1.3a";
865   };
867   lppl13c = {
868     spdxId = "LPPL-1.3c";
869     fullName = "LaTeX Project Public License v1.3c";
870   };
872   lpl-102 = {
873     spdxId = "LPL-1.02";
874     fullName = "Lucent Public License v1.02";
875   };
877   miros = {
878     spdxId = "MirOS";
879     fullName = "MirOS License";
880     url = "https://opensource.org/licenses/MirOS";
881   };
883   mit = {
884     spdxId = "MIT";
885     fullName = "MIT License";
886   };
887   # https://spdx.org/licenses/MIT-feh.html
888   mit-feh = {
889     spdxId = "MIT-feh";
890     fullName = "feh License";
891   };
893   mit-modern = {
894     # Also known as Zsh license
895     spdxId = "MIT-Modern-Variant";
896     fullName = "MIT License Modern Variant";
897   };
899   mitAdvertising = {
900     spdxId = "MIT-advertising";
901     fullName = "Enlightenment License (e16)";
902   };
904   mit0 = {
905     spdxId = "MIT-0";
906     fullName = "MIT No Attribution";
907   };
909   mpl10 = {
910     spdxId = "MPL-1.0";
911     fullName = "Mozilla Public License 1.0";
912   };
914   mpl11 = {
915     spdxId = "MPL-1.1";
916     fullName = "Mozilla Public License 1.1";
917   };
919   mpl20 = {
920     spdxId = "MPL-2.0";
921     fullName = "Mozilla Public License 2.0";
922   };
924   mplus = {
925     spdxId = "mplus";
926     fullName = "M+ Font License";
927   };
929   mspl = {
930     spdxId = "MS-PL";
931     fullName = "Microsoft Public License";
932   };
934   mulan-psl2 = {
935     spdxId = "MulanPSL-2.0";
936     fullName = "Mulan Permissive Software License, Version 2";
937     url = "https://license.coscl.org.cn/MulanPSL2";
938   };
940   nasa13 = {
941     spdxId = "NASA-1.3";
942     fullName = "NASA Open Source Agreement 1.3";
943     free = false;
944   };
946   ncbiPd = {
947     spdxId = "NCBI-PD";
948     fullName = "NCBI Public Domain Notice";
949     # Due to United States copyright law, anything with this "license" does not have a copyright in the
950     # jurisdiction of the United States. However, other jurisdictions may assign the United States
951     # government copyright to the work, and the license explicitly states that in such a case, no license
952     # is granted. This is nonfree and nonredistributable in most jurisdictions other than the United States.
953     free = false;
954     redistributable = false;
955   };
957   ncsa = {
958     spdxId = "NCSA";
959     fullName = "University of Illinois/NCSA Open Source License";
960   };
962   ncul1 = {
963     spdxId = "NCUL1";
964     fullName = "Netdata Cloud UI License v1.0";
965     free = false;
966     redistributable = true; # Only if used in Netdata products.
967     url = "https://raw.githubusercontent.com/netdata/netdata/master/web/gui/v2/LICENSE.md";
968   };
970   nistSoftware = {
971     spdxId = "NIST-Software";
972     fullName = "NIST Software License";
973   };
975   nlpl = {
976     spdxId = "NLPL";
977     fullName = "No Limit Public License";
978   };
980   nposl3 = {
981     spdxId = "NPOSL-3.0";
982     fullName = "Non-Profit Open Software License 3.0";
983   };
985   nvidiaCuda = {
986     shortName = "CUDA EULA";
987     fullName = "CUDA Toolkit End User License Agreement (EULA)";
988     url = "https://docs.nvidia.com/cuda/eula/index.html#cuda-toolkit-supplement-license-agreement";
989     free = false;
990   };
992   nvidiaCudaRedist = {
993     shortName = "CUDA EULA";
994     fullName = "CUDA Toolkit End User License Agreement (EULA)";
995     url = "https://docs.nvidia.com/cuda/eula/index.html#cuda-toolkit-supplement-license-agreement";
996     free = false;
997     redistributable = true;
998   };
1000   obsidian = {
1001     fullName = "Obsidian End User Agreement";
1002     url = "https://obsidian.md/eula";
1003     free = false;
1004   };
1006   ocamlLgplLinkingException = {
1007     spdxId = "OCaml-LGPL-linking-exception";
1008     fullName = "OCaml LGPL Linking Exception";
1009   };
1011   ocamlpro_nc = {
1012     fullName = "OCamlPro Non Commercial license version 1";
1013     url = "https://alt-ergo.ocamlpro.com/http/alt-ergo-2.2.0/OCamlPro-Non-Commercial-License.pdf";
1014     free = false;
1015   };
1017   odbl = {
1018     spdxId = "ODbL-1.0";
1019     fullName = "Open Data Commons Open Database License v1.0";
1020   };
1022   ofl = {
1023     spdxId = "OFL-1.1";
1024     fullName = "SIL Open Font License 1.1";
1025   };
1027   oml = {
1028     spdxId = "OML";
1029     fullName = "Open Market License";
1030   };
1032   openldap = {
1033     spdxId = "OLDAP-2.8";
1034     fullName = "Open LDAP Public License v2.8";
1035   };
1037   openssl = {
1038     spdxId = "OpenSSL";
1039     fullName = "OpenSSL License";
1040   };
1042   opubl = {
1043     spdxId = "OPUBL-1.0";
1044     fullName = "Open Publication License v1.0";
1045   };
1047   osl2 = {
1048     spdxId = "OSL-2.0";
1049     fullName = "Open Software License 2.0";
1050   };
1052   osl21 = {
1053     spdxId = "OSL-2.1";
1054     fullName = "Open Software License 2.1";
1055   };
1057   osl3 = {
1058     spdxId = "OSL-3.0";
1059     fullName = "Open Software License 3.0";
1060   };
1062   parity70 = {
1063     spdxId = "Parity-7.0.0";
1064     fullName = "Parity Public License 7.0.0";
1065     url = "https://paritylicense.com/versions/7.0.0.html";
1066   };
1068   php301 = {
1069     spdxId = "PHP-3.01";
1070     fullName = "PHP License v3.01";
1071   };
1073   postgresql = {
1074     spdxId = "PostgreSQL";
1075     fullName = "PostgreSQL License";
1076   };
1078   postman = {
1079     fullName = "Postman EULA";
1080     url = "https://www.getpostman.com/licenses/postman_base_app";
1081     free = false;
1082   };
1084   psfl = {
1085     spdxId = "Python-2.0";
1086     fullName = "Python Software Foundation License version 2";
1087     url = "https://docs.python.org/license.html";
1088   };
1090   publicDomain = {
1091     fullName = "Public Domain";
1092   };
1094   purdueBsd = {
1095     fullName = " Purdue BSD-Style License"; # also know as lsof license
1096     url = "https://enterprise.dejacode.com/licenses/public/purdue-bsd";
1097   };
1099   prosperity30 = {
1100     fullName = "Prosperity-3.0.0";
1101     free = false;
1102     url = "https://prosperitylicense.com/versions/3.0.0.html";
1103   };
1105   qhull = {
1106     spdxId = "Qhull";
1107     fullName = "Qhull License";
1108   };
1110   qpl = {
1111     spdxId = "QPL-1.0";
1112     fullName = "Q Public License 1.0";
1113   };
1115   qwt = {
1116     fullName = "Qwt License, Version 1.0";
1117     url = "https://qwt.sourceforge.io/qwtlicense.html";
1118   };
1120   radiance = {
1121     fullName = "The Radiance Software License, Version 2.0";
1122     url = "https://github.com/LBNL-ETA/Radiance/blob/master/License.txt";
1123   };
1125   ruby = {
1126     spdxId = "Ruby";
1127     fullName = "Ruby License";
1128   };
1130   sendmail = {
1131     spdxId = "Sendmail";
1132     fullName = "Sendmail License";
1133   };
1135   sgi-b-20 = {
1136     spdxId = "SGI-B-2.0";
1137     fullName = "SGI Free Software License B v2.0";
1138   };
1140   # Gentoo seems to treat it as a license:
1141   # https://gitweb.gentoo.org/repo/gentoo.git/tree/licenses/SGMLUG?id=7d999af4a47bf55e53e54713d98d145f935935c1
1142   sgmlug = {
1143     fullName = "SGML UG SGML Parser Materials license";
1144   };
1146   sleepycat = {
1147     spdxId = "Sleepycat";
1148     fullName = "Sleepycat License";
1149   };
1151   smail = {
1152     shortName = "smail";
1153     fullName = "SMAIL General Public License";
1154     url = "https://sources.debian.org/copyright/license/debianutils/4.9.1/";
1155   };
1157   smlnj = {
1158     spdxId = "SMLNJ";
1159     fullName = "Standard ML of New Jersey License";
1160   };
1162   sspl = {
1163     shortName = "SSPL";
1164     fullName = "Server Side Public License";
1165     url = "https://www.mongodb.com/licensing/server-side-public-license";
1166     free = false;
1167     # NOTE Debatable.
1168     # The license a slightly modified AGPL but still considered unfree by the
1169     # OSI for what seem like political reasons
1170     redistributable = true; # Definitely redistributable though, it's an AGPL derivative
1171   };
1173   stk = {
1174     shortName = "stk";
1175     fullName = "Synthesis Tool Kit 4.3";
1176     url = "https://github.com/thestk/stk/blob/master/LICENSE";
1177   };
1179   sudo = {
1180     shortName = "sudo";
1181     fullName = "Sudo License (ISC-style)";
1182     url = "https://www.sudo.ws/about/license/";
1183   };
1185   sustainableUse = {
1186     shortName = "sustainable";
1187     fullName = "Sustainable Use License";
1188     url = "https://github.com/n8n-io/n8n/blob/master/LICENSE.md";
1189     free = false;
1190     redistributable = false; # only free to redistribute "for non-commercial purposes"
1191   };
1193   tsl = {
1194     shortName = "TSL";
1195     fullName = "Timescale License Agreegment";
1196     url = "https://github.com/timescale/timescaledb/blob/main/tsl/LICENSE-TIMESCALE";
1197     free = false;
1198   };
1200   tcltk = {
1201     spdxId = "TCL";
1202     fullName = "TCL/TK License";
1203   };
1205   ucd = {
1206     fullName = "Unicode Character Database License";
1207     url = "https://fedoraproject.org/wiki/Licensing:UCD";
1208   };
1210   ufl = {
1211     fullName = "Ubuntu Font License 1.0";
1212     url = "https://ubuntu.com/legal/font-licence";
1213   };
1215   unfree = {
1216     fullName = "Unfree";
1217     free = false;
1218   };
1220   unfreeRedistributable = {
1221     fullName = "Unfree redistributable";
1222     free = false;
1223     redistributable = true;
1224   };
1226   unfreeRedistributableFirmware = {
1227     fullName = "Unfree redistributable firmware";
1228     redistributable = true;
1229     # Note: we currently consider these "free" for inclusion in the
1230     # channel and NixOS images.
1231   };
1233   unicode-30 = {
1234     spdxId = "Unicode-3.0";
1235     fullName = "Unicode License v3";
1236   };
1238   unicode-dfs-2015 = {
1239     spdxId = "Unicode-DFS-2015";
1240     fullName = "Unicode License Agreement - Data Files and Software (2015)";
1241   };
1243   unicode-dfs-2016 = {
1244     spdxId = "Unicode-DFS-2016";
1245     fullName = "Unicode License Agreement - Data Files and Software (2016)";
1246   };
1248   unlicense = {
1249     spdxId = "Unlicense";
1250     fullName = "The Unlicense";
1251   };
1253   upl = {
1254     spdxId = "UPL-1.0";
1255     fullName = "Universal Permissive License";
1256     url = "https://oss.oracle.com/licenses/upl/";
1257   };
1259   vim = {
1260     spdxId = "Vim";
1261     fullName = "Vim License";
1262   };
1264   virtualbox-puel = {
1265     fullName = "Oracle VM VirtualBox Extension Pack Personal Use and Evaluation License (PUEL)";
1266     url = "https://www.virtualbox.org/wiki/VirtualBox_PUEL";
1267     free = false;
1268   };
1270   vol-sl = {
1271     fullName = "Volatility Software License, Version 1.0";
1272     url = "https://www.volatilityfoundation.org/license/vsl-v1.0";
1273   };
1275   vsl10 = {
1276     spdxId = "VSL-1.0";
1277     fullName = "Vovida Software License v1.0";
1278   };
1280   watcom = {
1281     spdxId = "Watcom-1.0";
1282     fullName = "Sybase Open Watcom Public License 1.0";
1283   };
1285   w3c = {
1286     spdxId = "W3C";
1287     fullName = "W3C Software Notice and License";
1288   };
1290   wadalab = {
1291     fullName = "Wadalab Font License";
1292     url = "https://fedoraproject.org/wiki/Licensing:Wadalab?rd=Licensing/Wadalab";
1293   };
1295   wtfpl = {
1296     spdxId = "WTFPL";
1297     fullName = "Do What The F*ck You Want To Public License";
1298   };
1300   wxWindows = {
1301     spdxId = "wxWindows";
1302     fullName = "wxWindows Library Licence, Version 3.1";
1303   };
1305   x11 = {
1306     spdxId = "X11";
1307     fullName = "X11 License";
1308   };
1310   xfig = {
1311     spdxId = "Xfig";
1312     fullName = "xfig";
1313     url = "https://mcj.sourceforge.net/authors.html#xfig";
1314   };
1316   xinetd = {
1317     spdxId = "xinetd";
1318     fullName = "xinetd License";
1319   };
1321   xskat = {
1322     spdxId = "XSkat";
1323     fullName = "XSkat License";
1324   };
1326   zlib = {
1327     spdxId = "Zlib";
1328     fullName = "zlib License";
1329   };
1331   zpl20 = {
1332     spdxId = "ZPL-2.0";
1333     fullName = "Zope Public License 2.0";
1334   };
1336   zpl21 = {
1337     spdxId = "ZPL-2.1";
1338     fullName = "Zope Public License 2.1";
1339   };
1341 } // {
1342   # TODO: remove legacy aliases
1343   apsl10 = {
1344     # deprecated for consistency with `apple-psl20`; use `apple-psl10`
1345     spdxId = "APSL-1.0";
1346     fullName = "Apple Public Source License 1.0";
1347     deprecated = true;
1348   };
1349   apsl20 = {
1350     # deprecated due to confusion with Apache-2.0; use `apple-psl20`
1351     spdxId = "APSL-2.0";
1352     fullName = "Apple Public Source License 2.0";
1353     deprecated = true;
1354   };
1355   gpl2 = {
1356     spdxId = "GPL-2.0";
1357     fullName = "GNU General Public License v2.0";
1358     deprecated = true;
1359   };
1360   gpl3 = {
1361     spdxId = "GPL-3.0";
1362     fullName = "GNU General Public License v3.0";
1363     deprecated = true;
1364   };
1365   lgpl2 = {
1366     spdxId = "LGPL-2.0";
1367     fullName = "GNU Library General Public License v2";
1368     deprecated = true;
1369   };
1370   lgpl21 = {
1371     spdxId = "LGPL-2.1";
1372     fullName = "GNU Lesser General Public License v2.1";
1373     deprecated = true;
1374   };
1375   lgpl3 = {
1376     spdxId = "LGPL-3.0";
1377     fullName = "GNU Lesser General Public License v3.0";
1378     deprecated = true;
1379   };