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