python310Packages.pydeconz: 104 -> 105
[NixPkgs.git] / lib / licenses.nix
blobc84d5e8706df3353f0bba57e6032497046624ef8
1 { lib }:
3 lib.mapAttrs (lname: lset: let
4   defaultLicense = rec {
5     shortName = lname;
6     free = true; # Most of our licenses are Free, explicitly declare unfree additions as such!
7     deprecated = false;
8   };
10   mkLicense = licenseDeclaration: let
11     applyDefaults = license: defaultLicense // license;
12     applySpdx = license:
13       if license ? spdxId
14       then license // { url = "https://spdx.org/licenses/${license.spdxId}.html"; }
15       else license;
16     applyRedistributable = license: { redistributable = license.free; } // license;
17   in lib.pipe licenseDeclaration [
18     applyDefaults
19     applySpdx
20     applyRedistributable
21   ];
22 in mkLicense lset) ({
23   /* License identifiers from spdx.org where possible.
24    * If you cannot find your license here, then look for a similar license or
25    * add it to this list. The URL mentioned above is a good source for inspiration.
26    */
28   abstyles = {
29     spdxId = "Abstyles";
30     fullName = "Abstyles License";
31   };
33   afl20 = {
34     spdxId = "AFL-2.0";
35     fullName = "Academic Free License v2.0";
36   };
38   afl21 = {
39     spdxId = "AFL-2.1";
40     fullName = "Academic Free License v2.1";
41   };
43   afl3 = {
44     spdxId = "AFL-3.0";
45     fullName = "Academic Free License v3.0";
46   };
48   agpl3Only = {
49     spdxId = "AGPL-3.0-only";
50     fullName = "GNU Affero General Public License v3.0 only";
51   };
53   agpl3Plus = {
54     spdxId = "AGPL-3.0-or-later";
55     fullName = "GNU Affero General Public License v3.0 or later";
56   };
58   aladdin = {
59     spdxId = "Aladdin";
60     fullName = "Aladdin Free Public License";
61     free = false;
62   };
64   amazonsl = {
65     fullName = "Amazon Software License";
66     url = "https://aws.amazon.com/asl/";
67     free = false;
68   };
70   amd = {
71     fullName = "AMD License Agreement";
72     url = "https://developer.amd.com/amd-license-agreement/";
73     free = false;
74   };
76   aom = {
77     fullName = "Alliance for Open Media Patent License 1.0";
78     url = "https://aomedia.org/license/patent-license/";
79   };
81   apsl10 = {
82     spdxId = "APSL-1.0";
83     fullName = "Apple Public Source License 1.0";
84     url = "https://web.archive.org/web/20040701000000*/http://www.opensource.apple.com/apsl/1.0.txt";
85   };
87   apsl20 = {
88     spdxId = "APSL-2.0";
89     fullName = "Apple Public Source License 2.0";
90   };
92   arphicpl = {
93     fullName = "Arphic Public License";
94     url = "https://www.freedesktop.org/wiki/Arphic_Public_License/";
95   };
97   artistic1 = {
98     spdxId = "Artistic-1.0";
99     fullName = "Artistic License 1.0";
100   };
102   artistic2 = {
103     spdxId = "Artistic-2.0";
104     fullName = "Artistic License 2.0";
105   };
107   asl20 = {
108     spdxId = "Apache-2.0";
109     fullName = "Apache License 2.0";
110   };
112   bitstreamVera = {
113     spdxId = "Bitstream-Vera";
114     fullName = "Bitstream Vera Font License";
115   };
117   bola11 = {
118     url = "https://blitiri.com.ar/p/bola/";
119     fullName = "Buena Onda License Agreement 1.1";
120   };
122   boost = {
123     spdxId = "BSL-1.0";
124     fullName = "Boost Software License 1.0";
125   };
127   beerware = {
128     spdxId = "Beerware";
129     fullName = "Beerware License";
130   };
132   blueOak100 = {
133     spdxId = "BlueOak-1.0.0";
134     fullName = "Blue Oak Model License 1.0.0";
135   };
137   bsd0 = {
138     spdxId = "0BSD";
139     fullName = "BSD Zero Clause License";
140   };
142   bsd1 = {
143     spdxId = "BSD-1-Clause";
144     fullName = "BSD 1-Clause License";
145   };
147   bsd2 = {
148     spdxId = "BSD-2-Clause";
149     fullName = ''BSD 2-clause "Simplified" License'';
150   };
152   bsd2Patent = {
153     spdxId = "BSD-2-Clause-Patent";
154     fullName = "BSD-2-Clause Plus Patent License";
155   };
157   bsd3 = {
158     spdxId = "BSD-3-Clause";
159     fullName = ''BSD 3-clause "New" or "Revised" License'';
160   };
162   bsdOriginal = {
163     spdxId = "BSD-4-Clause";
164     fullName = ''BSD 4-clause "Original" or "Old" License'';
165   };
167   bsdOriginalShortened = {
168     spdxId = "BSD-4-Clause-Shortened";
169     fullName = "BSD 4 Clause Shortened";
170   };
172   bsdOriginalUC = {
173     spdxId = "BSD-4-Clause-UC";
174     fullName = "BSD 4-Clause University of California-Specific";
175   };
177   bsdProtection = {
178     spdxId = "BSD-Protection";
179     fullName = "BSD Protection License";
180   };
182   bsl11 = {
183     fullName = "Business Source License 1.1";
184     url = "https://mariadb.com/bsl11";
185     free = false;
186   };
188   cal10 = {
189     fullName = "Cryptographic Autonomy License version 1.0 (CAL-1.0)";
190     url = "https://opensource.org/licenses/CAL-1.0";
191   };
193   capec = {
194     fullName = "Common Attack Pattern Enumeration and Classification";
195     url = "https://capec.mitre.org/about/termsofuse.html";
196   };
198   clArtistic = {
199     spdxId = "ClArtistic";
200     fullName = "Clarified Artistic License";
201   };
203   cc0 = {
204     spdxId = "CC0-1.0";
205     fullName = "Creative Commons Zero v1.0 Universal";
206   };
208   cc-by-nc-sa-20 = {
209     spdxId = "CC-BY-NC-SA-2.0";
210     fullName = "Creative Commons Attribution Non Commercial Share Alike 2.0";
211     free = false;
212   };
214   cc-by-nc-sa-25 = {
215     spdxId = "CC-BY-NC-SA-2.5";
216     fullName = "Creative Commons Attribution Non Commercial Share Alike 2.5";
217     free = false;
218   };
220   cc-by-nc-sa-30 = {
221     spdxId = "CC-BY-NC-SA-3.0";
222     fullName = "Creative Commons Attribution Non Commercial Share Alike 3.0";
223     free = false;
224   };
226   cc-by-nc-sa-40 = {
227     spdxId = "CC-BY-NC-SA-4.0";
228     fullName = "Creative Commons Attribution Non Commercial Share Alike 4.0";
229     free = false;
230   };
232   cc-by-nc-30 = {
233     spdxId = "CC-BY-NC-3.0";
234     fullName = "Creative Commons Attribution Non Commercial 3.0 Unported";
235     free = false;
236   };
238   cc-by-nc-40 = {
239     spdxId = "CC-BY-NC-4.0";
240     fullName = "Creative Commons Attribution Non Commercial 4.0 International";
241     free = false;
242   };
244   cc-by-nd-30 = {
245     spdxId = "CC-BY-ND-3.0";
246     fullName = "Creative Commons Attribution-No Derivative Works v3.00";
247     free = false;
248   };
250   cc-by-sa-25 = {
251     spdxId = "CC-BY-SA-2.5";
252     fullName = "Creative Commons Attribution Share Alike 2.5";
253   };
255   cc-by-30 = {
256     spdxId = "CC-BY-3.0";
257     fullName = "Creative Commons Attribution 3.0";
258   };
260   cc-by-sa-30 = {
261     spdxId = "CC-BY-SA-3.0";
262     fullName = "Creative Commons Attribution Share Alike 3.0";
263   };
265   cc-by-40 = {
266     spdxId = "CC-BY-4.0";
267     fullName = "Creative Commons Attribution 4.0";
268   };
270   cc-by-sa-40 = {
271     spdxId = "CC-BY-SA-4.0";
272     fullName = "Creative Commons Attribution Share Alike 4.0";
273   };
275   cddl = {
276     spdxId = "CDDL-1.0";
277     fullName = "Common Development and Distribution License 1.0";
278   };
280   cecill20 = {
281     spdxId = "CECILL-2.0";
282     fullName = "CeCILL Free Software License Agreement v2.0";
283   };
285   cecill21 = {
286     spdxId = "CECILL-2.1";
287     fullName = "CeCILL Free Software License Agreement v2.1";
288   };
290   cecill-b = {
291     spdxId = "CECILL-B";
292     fullName  = "CeCILL-B Free Software License Agreement";
293   };
295   cecill-c = {
296     spdxId = "CECILL-C";
297     fullName  = "CeCILL-C Free Software License Agreement";
298   };
300   cpal10 = {
301     spdxId = "CPAL-1.0";
302     fullName = "Common Public Attribution License 1.0";
303   };
305   cpl10 = {
306     spdxId = "CPL-1.0";
307     fullName = "Common Public License 1.0";
308   };
310   curl = {
311     spdxId = "curl";
312     fullName = "curl License";
313   };
315   doc = {
316     spdxId = "DOC";
317     fullName = "DOC License";
318   };
320   drl10 = {
321     spdxId = "DRL-1.0";
322     fullName = "Detection Rule License 1.0";
323   };
325   eapl = {
326     fullName = "EPSON AVASYS PUBLIC LICENSE";
327     url = "https://avasys.jp/hp/menu000000700/hpg000000603.htm";
328     free = false;
329   };
331   efl10 = {
332     spdxId = "EFL-1.0";
333     fullName = "Eiffel Forum License v1.0";
334   };
336   efl20 = {
337     spdxId = "EFL-2.0";
338     fullName = "Eiffel Forum License v2.0";
339   };
341   elastic = {
342     fullName = "ELASTIC LICENSE";
343     url = "https://github.com/elastic/elasticsearch/blob/master/licenses/ELASTIC-LICENSE.txt";
344     free = false;
345   };
347   epl10 = {
348     spdxId = "EPL-1.0";
349     fullName = "Eclipse Public License 1.0";
350   };
352   epl20 = {
353     spdxId = "EPL-2.0";
354     fullName = "Eclipse Public License 2.0";
355   };
357   epson = {
358     fullName = "Seiko Epson Corporation Software License Agreement for Linux";
359     url = "https://download.ebz.epson.net/dsc/du/02/eula/global/LINUX_EN.html";
360     free = false;
361   };
363   eupl11 = {
364     spdxId = "EUPL-1.1";
365     fullName = "European Union Public License 1.1";
366   };
368   eupl12 = {
369     spdxId = "EUPL-1.2";
370     fullName = "European Union Public License 1.2";
371   };
373   fdl11Only = {
374     spdxId = "GFDL-1.1-only";
375     fullName = "GNU Free Documentation License v1.1 only";
376   };
378   fdl11Plus = {
379     spdxId = "GFDL-1.1-or-later";
380     fullName = "GNU Free Documentation License v1.1 or later";
381   };
383   fdl12Only = {
384     spdxId = "GFDL-1.2-only";
385     fullName = "GNU Free Documentation License v1.2 only";
386   };
388   fdl12Plus = {
389     spdxId = "GFDL-1.2-or-later";
390     fullName = "GNU Free Documentation License v1.2 or later";
391   };
393   fdl13Only = {
394     spdxId = "GFDL-1.3-only";
395     fullName = "GNU Free Documentation License v1.3 only";
396   };
398   fdl13Plus = {
399     spdxId = "GFDL-1.3-or-later";
400     fullName = "GNU Free Documentation License v1.3 or later";
401   };
403   ffsl = {
404     fullName = "Floodgap Free Software License";
405     url = "https://www.floodgap.com/software/ffsl/license.html";
406     free = false;
407   };
409   free = {
410     fullName = "Unspecified free software license";
411   };
413   ftl = {
414     spdxId = "FTL";
415     fullName = "Freetype Project License";
416   };
418   g4sl = {
419     fullName = "Geant4 Software License";
420     url = "https://geant4.web.cern.ch/geant4/license/LICENSE.html";
421   };
423   geogebra = {
424     fullName = "GeoGebra Non-Commercial License Agreement";
425     url = "https://www.geogebra.org/license";
426     free = false;
427   };
429   generaluser = {
430     fullName = "GeneralUser GS License v2.0";
431     url = "http://www.schristiancollins.com/generaluser.php"; # license included in sources
432   };
434   gpl1Only = {
435     spdxId = "GPL-1.0-only";
436     fullName = "GNU General Public License v1.0 only";
437   };
439   gpl1Plus = {
440     spdxId = "GPL-1.0-or-later";
441     fullName = "GNU General Public License v1.0 or later";
442   };
444   gpl2Only = {
445     spdxId = "GPL-2.0-only";
446     fullName = "GNU General Public License v2.0 only";
447   };
449   gpl2Classpath = {
450     spdxId = "GPL-2.0-with-classpath-exception";
451     fullName = "GNU General Public License v2.0 only (with Classpath exception)";
452   };
454   gpl2ClasspathPlus = {
455     fullName = "GNU General Public License v2.0 or later (with Classpath exception)";
456     url = "https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception";
457   };
459   gpl2Oss = {
460     fullName = "GNU General Public License version 2 only (with OSI approved licenses linking exception)";
461     url = "https://www.mysql.com/about/legal/licensing/foss-exception";
462   };
464   gpl2Plus = {
465     spdxId = "GPL-2.0-or-later";
466     fullName = "GNU General Public License v2.0 or later";
467   };
469   gpl3Only = {
470     spdxId = "GPL-3.0-only";
471     fullName = "GNU General Public License v3.0 only";
472   };
474   gpl3Plus = {
475     spdxId = "GPL-3.0-or-later";
476     fullName = "GNU General Public License v3.0 or later";
477   };
479   gpl3ClasspathPlus = {
480     fullName = "GNU General Public License v3.0 or later (with Classpath exception)";
481     url = "https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception";
482   };
484   hpnd = {
485     spdxId = "HPND";
486     fullName = "Historic Permission Notice and Disclaimer";
487   };
489   hpndSellVariant = {
490     fullName = "Historical Permission Notice and Disclaimer - sell variant";
491     spdxId = "HPND-sell-variant";
492   };
494   # Intel's license, seems free
495   iasl = {
496     fullName = "iASL";
497     url = "https://old.calculate-linux.org/packages/licenses/iASL";
498   };
500   ijg = {
501     spdxId = "IJG";
502     fullName = "Independent JPEG Group License";
503   };
505   imagemagick = {
506     fullName = "ImageMagick License";
507     spdxId = "imagemagick";
508   };
510   imlib2 = {
511     spdxId = "Imlib2";
512     fullName = "Imlib2 License";
513   };
515   inria-compcert = {
516     fullName  = "INRIA Non-Commercial License Agreement for the CompCert verified compiler";
517     url       = "https://compcert.org/doc/LICENSE.txt";
518     free      = false;
519   };
521   inria-icesl = {
522     fullName = "INRIA Non-Commercial License Agreement for IceSL";
523     url      = "https://icesl.loria.fr/assets/pdf/EULA_IceSL_binary.pdf";
524     free     = false;
525   };
527   ipa = {
528     spdxId = "IPA";
529     fullName = "IPA Font License";
530   };
532   ipl10 = {
533     spdxId = "IPL-1.0";
534     fullName = "IBM Public License v1.0";
535   };
537   isc = {
538     spdxId = "ISC";
539     fullName = "ISC License";
540   };
542   # Proprietary binaries; free to redistribute without modification.
543   databricks = {
544     fullName = "Databricks Proprietary License";
545     url = "https://pypi.org/project/databricks-connect";
546     free = false;
547   };
549   databricks-dbx = {
550     fullName = "DataBricks eXtensions aka dbx License";
551     url = "https://github.com/databrickslabs/dbx/blob/743b579a4ac44531f764c6e522dbe5a81a7dc0e4/LICENSE";
552     free = false;
553     redistributable = false;
554   };
556   issl = {
557     fullName = "Intel Simplified Software License";
558     url = "https://software.intel.com/en-us/license/intel-simplified-software-license";
559     free = false;
560   };
562   lal12 = {
563     spdxId = "LAL-1.2";
564     fullName = "Licence Art Libre 1.2";
565   };
567   lal13 = {
568     spdxId = "LAL-1.3";
569     fullName = "Licence Art Libre 1.3";
570   };
572   lgpl2Only = {
573     spdxId = "LGPL-2.0-only";
574     fullName = "GNU Library General Public License v2 only";
575   };
577   lgpl2Plus = {
578     spdxId = "LGPL-2.0-or-later";
579     fullName = "GNU Library General Public License v2 or later";
580   };
582   lgpl21Only = {
583     spdxId = "LGPL-2.1-only";
584     fullName = "GNU Lesser General Public License v2.1 only";
585   };
587   lgpl21Plus = {
588     spdxId = "LGPL-2.1-or-later";
589     fullName = "GNU Lesser General Public License v2.1 or later";
590   };
592   lgpl3Only = {
593     spdxId = "LGPL-3.0-only";
594     fullName = "GNU Lesser General Public License v3.0 only";
595   };
597   lgpl3Plus = {
598     spdxId = "LGPL-3.0-or-later";
599     fullName = "GNU Lesser General Public License v3.0 or later";
600   };
602   lgpllr = {
603     spdxId = "LGPLLR";
604     fullName = "Lesser General Public License For Linguistic Resources";
605   };
607   libpng = {
608     spdxId = "Libpng";
609     fullName = "libpng License";
610   };
612   libpng2 = {
613     spdxId = "libpng-2.0"; # Used since libpng 1.6.36.
614     fullName = "PNG Reference Library version 2";
615   };
617   libssh2 = {
618     fullName = "libssh2 License";
619     url = "https://www.libssh2.org/license.html";
620   };
622   libtiff = {
623     spdxId = "libtiff";
624     fullName = "libtiff License";
625   };
627   llgpl21 = {
628     fullName = "Lisp LGPL; GNU Lesser General Public License version 2.1 with Franz Inc. preamble for clarification of LGPL terms in context of Lisp";
629     url = "https://opensource.franz.com/preamble.html";
630   };
632   llvm-exception = {
633     spdxId = "LLVM-exception";
634     fullName = "LLVM Exception"; # LLVM exceptions to the Apache 2.0 License
635   };
637   lppl12 = {
638     spdxId = "LPPL-1.2";
639     fullName = "LaTeX Project Public License v1.2";
640   };
642   lppl13c = {
643     spdxId = "LPPL-1.3c";
644     fullName = "LaTeX Project Public License v1.3c";
645   };
647   lpl-102 = {
648     spdxId = "LPL-1.02";
649     fullName = "Lucent Public License v1.02";
650   };
652   miros = {
653     fullName = "MirOS License";
654     url = "https://opensource.org/licenses/MirOS";
655   };
657   # spdx.org does not (yet) differentiate between the X11 and Expat versions
658   # for details see https://en.wikipedia.org/wiki/MIT_License#Various_versions
659   mit = {
660     spdxId = "MIT";
661     fullName = "MIT License";
662   };
663   # https://spdx.org/licenses/MIT-feh.html
664   mit-feh = {
665     spdxId = "MIT-feh";
666     fullName = "feh License";
667   };
669   mitAdvertising = {
670     spdxId = "MIT-advertising";
671     fullName = "Enlightenment License (e16)";
672   };
674   mit0 = {
675     spdxId = "MIT-0";
676     fullName = "MIT No Attribution";
677   };
679   mpl10 = {
680     spdxId = "MPL-1.0";
681     fullName = "Mozilla Public License 1.0";
682   };
684   mpl11 = {
685     spdxId = "MPL-1.1";
686     fullName = "Mozilla Public License 1.1";
687   };
689   mpl20 = {
690     spdxId = "MPL-2.0";
691     fullName = "Mozilla Public License 2.0";
692   };
694   mspl = {
695     spdxId = "MS-PL";
696     fullName = "Microsoft Public License";
697   };
699   nasa13 = {
700     spdxId = "NASA-1.3";
701     fullName = "NASA Open Source Agreement 1.3";
702     free = false;
703   };
705   ncsa = {
706     spdxId = "NCSA";
707     fullName  = "University of Illinois/NCSA Open Source License";
708   };
710   nposl3 = {
711     spdxId = "NPOSL-3.0";
712     fullName = "Non-Profit Open Software License 3.0";
713   };
715   obsidian = {
716     fullName = "Obsidian End User Agreement";
717     url = "https://obsidian.md/eula";
718     free = false;
719   };
721   ocamlpro_nc = {
722     fullName = "OCamlPro Non Commercial license version 1";
723     url = "https://alt-ergo.ocamlpro.com/http/alt-ergo-2.2.0/OCamlPro-Non-Commercial-License.pdf";
724     free = false;
725   };
727   odbl = {
728     spdxId = "ODbL-1.0";
729     fullName = "Open Data Commons Open Database License v1.0";
730   };
732   ofl = {
733     spdxId = "OFL-1.1";
734     fullName = "SIL Open Font License 1.1";
735   };
737   oml = {
738     spdxId = "OML";
739     fullName = "Open Market License";
740   };
742   openldap = {
743     spdxId = "OLDAP-2.8";
744     fullName = "Open LDAP Public License v2.8";
745   };
747   openssl = {
748     spdxId = "OpenSSL";
749     fullName = "OpenSSL License";
750   };
752   osl2 = {
753     spdxId = "OSL-2.0";
754     fullName = "Open Software License 2.0";
755   };
757   osl21 = {
758     spdxId = "OSL-2.1";
759     fullName = "Open Software License 2.1";
760   };
762   osl3 = {
763     spdxId = "OSL-3.0";
764     fullName = "Open Software License 3.0";
765   };
767   parity70 = {
768     spdxId = "Parity-7.0.0";
769     fullName = "Parity Public License 7.0.0";
770     url = "https://paritylicense.com/versions/7.0.0.html";
771   };
773   php301 = {
774     spdxId = "PHP-3.01";
775     fullName = "PHP License v3.01";
776   };
778   postgresql = {
779     spdxId = "PostgreSQL";
780     fullName = "PostgreSQL License";
781   };
783   postman = {
784     fullName = "Postman EULA";
785     url = "https://www.getpostman.com/licenses/postman_base_app";
786     free = false;
787   };
789   psfl = {
790     spdxId = "Python-2.0";
791     fullName = "Python Software Foundation License version 2";
792     url = "https://docs.python.org/license.html";
793   };
795   publicDomain = {
796     fullName = "Public Domain";
797   };
799   purdueBsd = {
800     fullName = " Purdue BSD-Style License"; # also know as lsof license
801     url = "https://enterprise.dejacode.com/licenses/public/purdue-bsd";
802   };
804   prosperity30 = {
805     fullName = "Prosperity-3.0.0";
806     free = false;
807     url = "https://prosperitylicense.com/versions/3.0.0.html";
808   };
810   qhull = {
811     spdxId = "Qhull";
812     fullName = "Qhull License";
813   };
815   qpl = {
816     spdxId = "QPL-1.0";
817     fullName = "Q Public License 1.0";
818   };
820   qwt = {
821     fullName = "Qwt License, Version 1.0";
822     url = "https://qwt.sourceforge.io/qwtlicense.html";
823   };
825   ruby = {
826     spdxId = "Ruby";
827     fullName = "Ruby License";
828   };
830   sendmail = {
831     spdxId = "Sendmail";
832     fullName = "Sendmail License";
833   };
835   sgi-b-20 = {
836     spdxId = "SGI-B-2.0";
837     fullName = "SGI Free Software License B v2.0";
838   };
840   sleepycat = {
841     spdxId = "Sleepycat";
842     fullName = "Sleepycat License";
843   };
845   smail = {
846     shortName = "smail";
847     fullName = "SMAIL General Public License";
848     url = "https://sources.debian.org/copyright/license/debianutils/4.9.1/";
849   };
851   sspl = {
852     shortName = "SSPL";
853     fullName = "Server Side Public License";
854     url = "https://www.mongodb.com/licensing/server-side-public-license";
855     free = false;
856     # NOTE Debatable.
857     # The license a slightly modified AGPL but still considered unfree by the
858     # OSI for what seem like political reasons
859     redistributable = true; # Definitely redistributable though, it's an AGPL derivative
860   };
862   stk = {
863     shortName = "stk";
864     fullName = "Synthesis Tool Kit 4.3";
865     url = "https://github.com/thestk/stk/blob/master/LICENSE";
866   };
868   tcltk = {
869     spdxId = "TCL";
870     fullName = "TCL/TK License";
871   };
873   ucd = {
874     fullName = "Unicode Character Database License";
875     url = "https://fedoraproject.org/wiki/Licensing:UCD";
876   };
878   ufl = {
879     fullName = "Ubuntu Font License 1.0";
880     url = "https://ubuntu.com/legal/font-licence";
881   };
883   unfree = {
884     fullName = "Unfree";
885     free = false;
886   };
888   unfreeRedistributable = {
889     fullName = "Unfree redistributable";
890     free = false;
891     redistributable = true;
892   };
894   unfreeRedistributableFirmware = {
895     fullName = "Unfree redistributable firmware";
896     redistributable = true;
897     # Note: we currently consider these "free" for inclusion in the
898     # channel and NixOS images.
899   };
901   unicode-dfs-2015 = {
902     spdxId = "Unicode-DFS-2015";
903     fullName = "Unicode License Agreement - Data Files and Software (2015)";
904   };
906   unicode-dfs-2016 = {
907     spdxId = "Unicode-DFS-2016";
908     fullName = "Unicode License Agreement - Data Files and Software (2016)";
909   };
911   unlicense = {
912     spdxId = "Unlicense";
913     fullName = "The Unlicense";
914   };
916   upl = {
917     fullName = "Universal Permissive License";
918     url = "https://oss.oracle.com/licenses/upl/";
919   };
921   vim = {
922     spdxId = "Vim";
923     fullName = "Vim License";
924   };
926   virtualbox-puel = {
927     fullName = "Oracle VM VirtualBox Extension Pack Personal Use and Evaluation License (PUEL)";
928     url = "https://www.virtualbox.org/wiki/VirtualBox_PUEL";
929     free = false;
930   };
932   vol-sl = {
933     fullName = "Volatility Software License, Version 1.0";
934     url = "https://www.volatilityfoundation.org/license/vsl-v1.0";
935   };
937   vsl10 = {
938     spdxId = "VSL-1.0";
939     fullName = "Vovida Software License v1.0";
940   };
942   watcom = {
943     spdxId = "Watcom-1.0";
944     fullName = "Sybase Open Watcom Public License 1.0";
945   };
947   w3c = {
948     spdxId = "W3C";
949     fullName = "W3C Software Notice and License";
950   };
952   wadalab = {
953     fullName = "Wadalab Font License";
954     url = "https://fedoraproject.org/wiki/Licensing:Wadalab?rd=Licensing/Wadalab";
955   };
957   wtfpl = {
958     spdxId = "WTFPL";
959     fullName = "Do What The F*ck You Want To Public License";
960   };
962   wxWindows = {
963     spdxId = "wxWindows";
964     fullName = "wxWindows Library Licence, Version 3.1";
965   };
967   xfig = {
968     fullName = "xfig";
969     url = "http://mcj.sourceforge.net/authors.html#xfig"; # https is broken
970   };
972   zlib = {
973     spdxId = "Zlib";
974     fullName = "zlib License";
975   };
977   zpl20 = {
978     spdxId = "ZPL-2.0";
979     fullName = "Zope Public License 2.0";
980   };
982   zpl21 = {
983     spdxId = "ZPL-2.1";
984     fullName = "Zope Public License 2.1";
985   };
986 } // {
987   # TODO: remove legacy aliases
988   agpl3 = {
989     spdxId = "AGPL-3.0";
990     fullName = "GNU Affero General Public License v3.0";
991     deprecated = true;
992   };
993   fdl11 = {
994     spdxId = "GFDL-1.1";
995     fullName = "GNU Free Documentation License v1.1";
996     deprecated = true;
997   };
998   fdl12 = {
999     spdxId = "GFDL-1.2";
1000     fullName = "GNU Free Documentation License v1.2";
1001     deprecated = true;
1002   };
1003   fdl13 = {
1004     spdxId = "GFDL-1.3";
1005     fullName = "GNU Free Documentation License v1.3";
1006     deprecated = true;
1007   };
1008   gpl2 = {
1009     spdxId = "GPL-2.0";
1010     fullName = "GNU General Public License v2.0";
1011     deprecated = true;
1012   };
1013   gpl3 = {
1014     spdxId = "GPL-3.0";
1015     fullName = "GNU General Public License v3.0";
1016     deprecated = true;
1017   };
1018   lgpl2 = {
1019     spdxId = "LGPL-2.0";
1020     fullName = "GNU Library General Public License v2";
1021     deprecated = true;
1022   };
1023   lgpl21 = {
1024     spdxId = "LGPL-2.1";
1025     fullName = "GNU Lesser General Public License v2.1";
1026     deprecated = true;
1027   };
1028   lgpl3 = {
1029     spdxId = "LGPL-3.0";
1030     fullName = "GNU Lesser General Public License v3.0";
1031     deprecated = true;
1032   };