2017-07-29 01:05:35 +01:00
|
|
|
{ lib }:
|
2014-11-05 14:26:45 +00:00
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
lib.mapAttrs (lname: lset: let
|
2023-06-23 00:00:05 +01:00
|
|
|
defaultLicense = {
|
2021-07-20 20:13:00 +01:00
|
|
|
shortName = lname;
|
2021-07-20 20:16:57 +01:00
|
|
|
free = true; # Most of our licenses are Free, explicitly declare unfree additions as such!
|
|
|
|
deprecated = false;
|
2021-07-20 20:13:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
mkLicense = licenseDeclaration: let
|
|
|
|
applyDefaults = license: defaultLicense // license;
|
|
|
|
applySpdx = license:
|
|
|
|
if license ? spdxId
|
|
|
|
then license // { url = "https://spdx.org/licenses/${license.spdxId}.html"; }
|
|
|
|
else license;
|
2021-07-20 20:20:59 +01:00
|
|
|
applyRedistributable = license: { redistributable = license.free; } // license;
|
2021-07-20 20:13:00 +01:00
|
|
|
in lib.pipe licenseDeclaration [
|
|
|
|
applyDefaults
|
|
|
|
applySpdx
|
2021-07-20 20:20:59 +01:00
|
|
|
applyRedistributable
|
2021-07-20 20:13:00 +01:00
|
|
|
];
|
|
|
|
in mkLicense lset) ({
|
2014-07-30 17:04:57 +01:00
|
|
|
/* License identifiers from spdx.org where possible.
|
2010-02-25 13:06:17 +00:00
|
|
|
* If you cannot find your license here, then look for a similar license or
|
|
|
|
* add it to this list. The URL mentioned above is a good source for inspiration.
|
|
|
|
*/
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
abstyles = {
|
2018-11-08 19:29:09 +00:00
|
|
|
spdxId = "Abstyles";
|
|
|
|
fullName = "Abstyles License";
|
|
|
|
};
|
|
|
|
|
2023-10-03 22:50:48 +01:00
|
|
|
acsl14 = {
|
|
|
|
fullName = "Anti-Capitalist Software License v1.4";
|
|
|
|
url = "https://anticapitalist.software/";
|
|
|
|
/* restrictions on corporations apply for both use and redistribution */
|
|
|
|
free = false;
|
|
|
|
redistributable = false;
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
afl20 = {
|
2020-12-01 10:09:08 +00:00
|
|
|
spdxId = "AFL-2.0";
|
|
|
|
fullName = "Academic Free License v2.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
afl21 = {
|
2014-11-06 00:44:33 +00:00
|
|
|
spdxId = "AFL-2.1";
|
2017-11-11 20:35:53 +00:00
|
|
|
fullName = "Academic Free License v2.1";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
afl3 = {
|
2017-11-11 20:35:53 +00:00
|
|
|
spdxId = "AFL-3.0";
|
|
|
|
fullName = "Academic Free License v3.0";
|
2014-11-06 00:44:33 +00:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
agpl3Only = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "AGPL-3.0-only";
|
|
|
|
fullName = "GNU Affero General Public License v3.0 only";
|
2013-05-31 02:07:36 +01:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
agpl3Plus = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "AGPL-3.0-or-later";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "GNU Affero General Public License v3.0 or later";
|
2013-05-31 02:07:36 +01:00
|
|
|
};
|
|
|
|
|
2022-06-30 18:33:28 +01:00
|
|
|
aladdin = {
|
|
|
|
spdxId = "Aladdin";
|
|
|
|
fullName = "Aladdin Free Public License";
|
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2014-11-05 13:28:52 +00:00
|
|
|
amazonsl = {
|
|
|
|
fullName = "Amazon Software License";
|
2020-04-18 22:13:20 +01:00
|
|
|
url = "https://aws.amazon.com/asl/";
|
2014-11-05 14:15:00 +00:00
|
|
|
free = false;
|
2014-11-05 13:28:52 +00:00
|
|
|
};
|
|
|
|
|
2013-06-16 22:35:09 +01:00
|
|
|
amd = {
|
|
|
|
fullName = "AMD License Agreement";
|
2020-04-18 22:13:20 +01:00
|
|
|
url = "https://developer.amd.com/amd-license-agreement/";
|
2018-11-16 16:47:08 +00:00
|
|
|
free = false;
|
2014-10-04 20:15:36 +01:00
|
|
|
};
|
2013-06-16 22:35:09 +01:00
|
|
|
|
2022-01-22 21:10:20 +00:00
|
|
|
aom = {
|
|
|
|
fullName = "Alliance for Open Media Patent License 1.0";
|
|
|
|
url = "https://aomedia.org/license/patent-license/";
|
|
|
|
};
|
|
|
|
|
2022-10-12 21:16:28 +01:00
|
|
|
apsl10 = {
|
|
|
|
spdxId = "APSL-1.0";
|
|
|
|
fullName = "Apple Public Source License 1.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
apsl20 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "APSL-2.0";
|
2014-03-12 20:20:01 +00:00
|
|
|
fullName = "Apple Public Source License 2.0";
|
|
|
|
};
|
2013-08-13 06:32:34 +01:00
|
|
|
|
2017-06-09 08:05:21 +01:00
|
|
|
arphicpl = {
|
|
|
|
fullName = "Arphic Public License";
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://www.freedesktop.org/wiki/Arphic_Public_License/";
|
2017-06-09 08:05:21 +01:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
artistic1 = {
|
2014-11-06 00:44:33 +00:00
|
|
|
spdxId = "Artistic-1.0";
|
|
|
|
fullName = "Artistic License 1.0";
|
|
|
|
};
|
|
|
|
|
2023-06-19 00:13:47 +01:00
|
|
|
artistic1-cl8 = {
|
|
|
|
spdxId = "Artistic-1.0-cl8";
|
|
|
|
fullName = "Artistic License 1.0 w/clause 8";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
artistic2 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "Artistic-2.0";
|
2014-07-30 17:16:36 +01:00
|
|
|
fullName = "Artistic License 2.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
asl20 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "Apache-2.0";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "Apache License 2.0";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
2013-03-24 21:45:48 +00:00
|
|
|
|
2023-02-23 16:14:09 +00:00
|
|
|
asl20-llvm = {
|
|
|
|
spdxId = "Apache-2.0 WITH LLVM-exception";
|
|
|
|
fullName = "Apache License 2.0 with LLVM Exceptions";
|
|
|
|
};
|
|
|
|
|
2022-11-02 21:53:58 +00:00
|
|
|
bitstreamVera = {
|
|
|
|
spdxId = "Bitstream-Vera";
|
|
|
|
fullName = "Bitstream Vera Font License";
|
|
|
|
};
|
|
|
|
|
2023-02-06 17:14:15 +00:00
|
|
|
bitTorrent10 = {
|
|
|
|
spdxId = "BitTorrent-1.0";
|
|
|
|
fullName = " BitTorrent Open Source License v1.0";
|
|
|
|
};
|
|
|
|
|
|
|
|
bitTorrent11 = {
|
|
|
|
spdxId = "BitTorrent-1.1";
|
|
|
|
fullName = " BitTorrent Open Source License v1.1";
|
|
|
|
};
|
|
|
|
|
2022-09-28 14:35:36 +01:00
|
|
|
bola11 = {
|
|
|
|
url = "https://blitiri.com.ar/p/bola/";
|
|
|
|
fullName = "Buena Onda License Agreement 1.1";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
boost = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "BSL-1.0";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "Boost Software License 1.0";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
beerware = {
|
2016-10-03 18:43:26 +01:00
|
|
|
spdxId = "Beerware";
|
2021-01-24 09:19:10 +00:00
|
|
|
fullName = "Beerware License";
|
2016-10-03 18:43:26 +01:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
blueOak100 = {
|
2020-08-17 08:53:05 +01:00
|
|
|
spdxId = "BlueOak-1.0.0";
|
|
|
|
fullName = "Blue Oak Model License 1.0.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
bsd0 = {
|
2018-02-11 15:16:00 +00:00
|
|
|
spdxId = "0BSD";
|
|
|
|
fullName = "BSD Zero Clause License";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
bsd1 = {
|
2021-02-02 13:28:15 +00:00
|
|
|
spdxId = "BSD-1-Clause";
|
|
|
|
fullName = "BSD 1-Clause License";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
bsd2 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "BSD-2-Clause";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = ''BSD 2-clause "Simplified" License'';
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
bsd2Patent = {
|
2020-07-03 05:18:01 +01:00
|
|
|
spdxId = "BSD-2-Clause-Patent";
|
2021-01-24 09:19:10 +00:00
|
|
|
fullName = "BSD-2-Clause Plus Patent License";
|
2020-07-03 05:18:01 +01:00
|
|
|
};
|
|
|
|
|
2022-11-16 04:01:05 +00:00
|
|
|
bsd2WithViews = {
|
|
|
|
spdxId = "BSD-2-Clause-Views";
|
|
|
|
fullName = "BSD 2-Clause with views sentence";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
bsd3 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "BSD-3-Clause";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = ''BSD 3-clause "New" or "Revised" License'';
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
|
|
|
|
2023-05-22 14:04:11 +01:00
|
|
|
bsd3Clear = {
|
|
|
|
spdxId = "BSD-3-Clause-Clear";
|
|
|
|
fullName = "BSD 3-Clause Clear License";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
bsdOriginal = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "BSD-4-Clause";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = ''BSD 4-clause "Original" or "Old" License'';
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
|
|
|
|
2022-08-24 14:10:17 +01:00
|
|
|
bsdOriginalShortened = {
|
|
|
|
spdxId = "BSD-4-Clause-Shortened";
|
|
|
|
fullName = "BSD 4 Clause Shortened";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
bsdOriginalUC = {
|
2021-04-03 20:38:53 +01:00
|
|
|
spdxId = "BSD-4-Clause-UC";
|
|
|
|
fullName = "BSD 4-Clause University of California-Specific";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
bsdProtection = {
|
2020-08-03 21:20:05 +01:00
|
|
|
spdxId = "BSD-Protection";
|
|
|
|
fullName = "BSD Protection License";
|
|
|
|
};
|
|
|
|
|
2018-06-10 21:50:36 +01:00
|
|
|
bsl11 = {
|
|
|
|
fullName = "Business Source License 1.1";
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://mariadb.com/bsl11";
|
2018-11-16 16:47:08 +00:00
|
|
|
free = false;
|
2023-05-20 18:01:30 +01:00
|
|
|
redistributable = true;
|
2018-06-10 21:50:36 +01:00
|
|
|
};
|
|
|
|
|
2023-05-12 00:49:03 +01:00
|
|
|
caossl = {
|
|
|
|
fullName = "Computer Associates Open Source Licence Version 1.0";
|
|
|
|
url = "http://jxplorer.org/licence.html";
|
|
|
|
};
|
|
|
|
|
2022-08-25 08:40:34 +01:00
|
|
|
cal10 = {
|
|
|
|
fullName = "Cryptographic Autonomy License version 1.0 (CAL-1.0)";
|
|
|
|
url = "https://opensource.org/licenses/CAL-1.0";
|
|
|
|
};
|
|
|
|
|
2023-05-28 20:47:50 +01:00
|
|
|
caldera = {
|
|
|
|
spdxId = "Caldera";
|
|
|
|
fullName = "Caldera License";
|
|
|
|
url = "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf";
|
|
|
|
};
|
|
|
|
|
2021-10-15 22:10:34 +01:00
|
|
|
capec = {
|
|
|
|
fullName = "Common Attack Pattern Enumeration and Classification";
|
|
|
|
url = "https://capec.mitre.org/about/termsofuse.html";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
clArtistic = {
|
2018-02-20 22:06:25 +00:00
|
|
|
spdxId = "ClArtistic";
|
|
|
|
fullName = "Clarified Artistic License";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cc0 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "CC0-1.0";
|
2014-11-06 00:44:33 +00:00
|
|
|
fullName = "Creative Commons Zero v1.0 Universal";
|
2014-08-19 14:02:20 +01:00
|
|
|
};
|
|
|
|
|
2023-02-09 12:54:06 +00:00
|
|
|
cc-by-nc-nd-30 = {
|
|
|
|
spdxId = "CC-BY-NC-ND-3.0";
|
|
|
|
fullName = "Creative Commons Attribution Non Commercial No Derivative Works 3.0 Unported";
|
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2023-04-14 09:47:46 +01:00
|
|
|
cc-by-nc-nd-40 = {
|
|
|
|
spdxId = "CC-BY-NC-ND-4.0";
|
|
|
|
fullName = "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International";
|
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cc-by-nc-sa-20 = {
|
2015-11-17 21:23:39 +00:00
|
|
|
spdxId = "CC-BY-NC-SA-2.0";
|
|
|
|
fullName = "Creative Commons Attribution Non Commercial Share Alike 2.0";
|
2018-06-24 17:31:54 +01:00
|
|
|
free = false;
|
2015-11-17 21:23:39 +00:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cc-by-nc-sa-25 = {
|
2015-11-17 21:23:39 +00:00
|
|
|
spdxId = "CC-BY-NC-SA-2.5";
|
|
|
|
fullName = "Creative Commons Attribution Non Commercial Share Alike 2.5";
|
2018-06-24 17:31:54 +01:00
|
|
|
free = false;
|
2015-11-17 21:23:39 +00:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cc-by-nc-sa-30 = {
|
2015-11-17 21:23:39 +00:00
|
|
|
spdxId = "CC-BY-NC-SA-3.0";
|
|
|
|
fullName = "Creative Commons Attribution Non Commercial Share Alike 3.0";
|
2018-06-24 17:31:54 +01:00
|
|
|
free = false;
|
2015-11-17 21:23:39 +00:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cc-by-nc-sa-40 = {
|
2015-11-17 21:23:39 +00:00
|
|
|
spdxId = "CC-BY-NC-SA-4.0";
|
|
|
|
fullName = "Creative Commons Attribution Non Commercial Share Alike 4.0";
|
2018-06-24 17:31:54 +01:00
|
|
|
free = false;
|
2015-11-17 21:23:39 +00:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cc-by-nc-30 = {
|
2019-04-25 03:12:43 +01:00
|
|
|
spdxId = "CC-BY-NC-3.0";
|
|
|
|
fullName = "Creative Commons Attribution Non Commercial 3.0 Unported";
|
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cc-by-nc-40 = {
|
2018-07-05 02:07:17 +01:00
|
|
|
spdxId = "CC-BY-NC-4.0";
|
|
|
|
fullName = "Creative Commons Attribution Non Commercial 4.0 International";
|
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cc-by-nd-30 = {
|
2016-10-06 21:27:40 +01:00
|
|
|
spdxId = "CC-BY-ND-3.0";
|
|
|
|
fullName = "Creative Commons Attribution-No Derivative Works v3.00";
|
2018-06-24 17:31:54 +01:00
|
|
|
free = false;
|
2016-10-06 21:27:40 +01:00
|
|
|
};
|
|
|
|
|
2023-06-18 18:19:01 +01:00
|
|
|
cc-by-sa-10 = {
|
|
|
|
spdxId = "CC-BY-SA-1.0";
|
|
|
|
fullName = "Creative Commons Attribution Share Alike 1.0";
|
|
|
|
};
|
|
|
|
|
2023-06-18 18:19:25 +01:00
|
|
|
cc-by-sa-20 = {
|
|
|
|
spdxId = "CC-BY-SA-2.0";
|
|
|
|
fullName = "Creative Commons Attribution Share Alike 2.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cc-by-sa-25 = {
|
2015-05-27 20:24:01 +01:00
|
|
|
spdxId = "CC-BY-SA-2.5";
|
|
|
|
fullName = "Creative Commons Attribution Share Alike 2.5";
|
|
|
|
};
|
|
|
|
|
2023-06-18 18:17:55 +01:00
|
|
|
cc-by-10 = {
|
|
|
|
spdxId = "CC-BY-1.0";
|
|
|
|
fullName = "Creative Commons Attribution 1.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cc-by-30 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "CC-BY-3.0";
|
2014-04-10 21:29:36 +01:00
|
|
|
fullName = "Creative Commons Attribution 3.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cc-by-sa-30 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "CC-BY-SA-3.0";
|
2014-10-13 01:23:18 +01:00
|
|
|
fullName = "Creative Commons Attribution Share Alike 3.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cc-by-40 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "CC-BY-4.0";
|
2014-09-11 19:02:36 +01:00
|
|
|
fullName = "Creative Commons Attribution 4.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cc-by-sa-40 = {
|
2015-03-17 19:39:03 +00:00
|
|
|
spdxId = "CC-BY-SA-4.0";
|
|
|
|
fullName = "Creative Commons Attribution Share Alike 4.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cddl = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "CDDL-1.0";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "Common Development and Distribution License 1.0";
|
2012-10-05 17:11:25 +01:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cecill20 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "CECILL-2.0";
|
2014-10-28 13:06:04 +00:00
|
|
|
fullName = "CeCILL Free Software License Agreement v2.0";
|
|
|
|
};
|
|
|
|
|
2021-09-27 22:38:43 +01:00
|
|
|
cecill21 = {
|
|
|
|
spdxId = "CECILL-2.1";
|
|
|
|
fullName = "CeCILL Free Software License Agreement v2.1";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cecill-b = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "CECILL-B";
|
2014-09-25 00:09:30 +01:00
|
|
|
fullName = "CeCILL-B Free Software License Agreement";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cecill-c = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "CECILL-C";
|
2014-07-30 17:16:36 +01:00
|
|
|
fullName = "CeCILL-C Free Software License Agreement";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cpal10 = {
|
2018-03-07 20:15:33 +00:00
|
|
|
spdxId = "CPAL-1.0";
|
|
|
|
fullName = "Common Public Attribution License 1.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
cpl10 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "CPL-1.0";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "Common Public License 1.0";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
curl = {
|
2019-09-22 21:33:44 +01:00
|
|
|
spdxId = "curl";
|
|
|
|
fullName = "curl License";
|
2018-08-16 20:36:36 +01:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
doc = {
|
2016-02-19 17:01:32 +00:00
|
|
|
spdxId = "DOC";
|
|
|
|
fullName = "DOC License";
|
|
|
|
};
|
|
|
|
|
2022-05-10 10:11:40 +01:00
|
|
|
drl10 = {
|
|
|
|
spdxId = "DRL-1.0";
|
|
|
|
fullName = "Detection Rule License 1.0";
|
|
|
|
};
|
|
|
|
|
2017-05-03 23:22:15 +01:00
|
|
|
eapl = {
|
|
|
|
fullName = "EPSON AVASYS PUBLIC LICENSE";
|
2020-04-18 22:13:20 +01:00
|
|
|
url = "https://avasys.jp/hp/menu000000700/hpg000000603.htm";
|
2017-05-03 23:22:15 +01:00
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2023-02-07 09:39:46 +00:00
|
|
|
ecl20 = {
|
|
|
|
fullName = "Educational Community License, Version 2.0";
|
|
|
|
url = "https://opensource.org/licenses/ECL-2.0";
|
|
|
|
shortName = "ECL 2.0";
|
|
|
|
spdxId = "ECL-2.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
efl10 = {
|
2015-03-27 01:12:10 +00:00
|
|
|
spdxId = "EFL-1.0";
|
|
|
|
fullName = "Eiffel Forum License v1.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
efl20 = {
|
2015-03-27 01:12:10 +00:00
|
|
|
spdxId = "EFL-2.0";
|
|
|
|
fullName = "Eiffel Forum License v2.0";
|
|
|
|
};
|
|
|
|
|
2023-08-27 17:29:26 +01:00
|
|
|
elastic20 = {
|
|
|
|
fullName = "Elastic License 2.0";
|
|
|
|
url = "https://github.com/elastic/elasticsearch/blob/main/licenses/ELASTIC-LICENSE-2.0.txt";
|
2018-06-24 12:22:12 +01:00
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
epl10 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "EPL-1.0";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "Eclipse Public License 1.0";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
epl20 = {
|
2018-01-30 11:23:47 +00:00
|
|
|
spdxId = "EPL-2.0";
|
|
|
|
fullName = "Eclipse Public License 2.0";
|
|
|
|
};
|
|
|
|
|
2016-03-09 04:19:31 +00:00
|
|
|
epson = {
|
|
|
|
fullName = "Seiko Epson Corporation Software License Agreement for Linux";
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://download.ebz.epson.net/dsc/du/02/eula/global/LINUX_EN.html";
|
2016-03-09 04:19:31 +00:00
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
eupl11 = {
|
2017-01-25 22:31:25 +00:00
|
|
|
spdxId = "EUPL-1.1";
|
2017-09-04 23:20:30 +01:00
|
|
|
fullName = "European Union Public License 1.1";
|
2017-01-25 22:05:02 +00:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
eupl12 = {
|
2019-08-31 00:21:13 +01:00
|
|
|
spdxId = "EUPL-1.2";
|
|
|
|
fullName = "European Union Public License 1.2";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
fdl11Only = {
|
2020-06-11 16:51:05 +01:00
|
|
|
spdxId = "GFDL-1.1-only";
|
|
|
|
fullName = "GNU Free Documentation License v1.1 only";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
fdl11Plus = {
|
2021-02-11 15:08:59 +00:00
|
|
|
spdxId = "GFDL-1.1-or-later";
|
|
|
|
fullName = "GNU Free Documentation License v1.1 or later";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
fdl12Only = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "GFDL-1.2-only";
|
|
|
|
fullName = "GNU Free Documentation License v1.2 only";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
fdl12Plus = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "GFDL-1.2-or-later";
|
|
|
|
fullName = "GNU Free Documentation License v1.2 or later";
|
2015-01-19 17:02:20 +00:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
fdl13Only = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "GFDL-1.3-only";
|
|
|
|
fullName = "GNU Free Documentation License v1.3 only";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
fdl13Plus = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "GFDL-1.3-or-later";
|
|
|
|
fullName = "GNU Free Documentation License v1.3 or later";
|
2015-09-27 15:45:35 +01:00
|
|
|
};
|
|
|
|
|
2017-09-13 08:37:16 +01:00
|
|
|
ffsl = {
|
|
|
|
fullName = "Floodgap Free Software License";
|
2020-04-18 22:13:20 +01:00
|
|
|
url = "https://www.floodgap.com/software/ffsl/license.html";
|
2017-11-03 21:42:25 +00:00
|
|
|
free = false;
|
2017-09-13 08:37:16 +01:00
|
|
|
};
|
|
|
|
|
2023-09-26 17:00:44 +01:00
|
|
|
fraunhofer-fdk = {
|
|
|
|
fullName = "Fraunhofer FDK AAC Codec Library";
|
|
|
|
spdxId = "FDK-AAC";
|
|
|
|
};
|
|
|
|
|
2014-11-05 14:26:45 +00:00
|
|
|
free = {
|
|
|
|
fullName = "Unspecified free software license";
|
|
|
|
};
|
2014-06-27 08:48:42 +01:00
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
ftl = {
|
2021-06-06 12:15:36 +01:00
|
|
|
spdxId = "FTL";
|
|
|
|
fullName = "Freetype Project License";
|
|
|
|
};
|
|
|
|
|
2016-07-31 20:22:26 +01:00
|
|
|
g4sl = {
|
|
|
|
fullName = "Geant4 Software License";
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://geant4.web.cern.ch/geant4/license/LICENSE.html";
|
2016-07-31 20:22:26 +01:00
|
|
|
};
|
|
|
|
|
2016-07-31 13:23:05 +01:00
|
|
|
geogebra = {
|
|
|
|
fullName = "GeoGebra Non-Commercial License Agreement";
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://www.geogebra.org/license";
|
2016-07-31 13:23:05 +01:00
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2022-03-24 10:49:38 +00:00
|
|
|
generaluser = {
|
|
|
|
fullName = "GeneralUser GS License v2.0";
|
2023-10-30 20:41:44 +00:00
|
|
|
url = "https://www.schristiancollins.com/generaluser.php"; # license included in sources
|
2022-03-24 10:49:38 +00:00
|
|
|
};
|
|
|
|
|
2023-06-19 00:26:43 +01:00
|
|
|
gfl = {
|
|
|
|
fullName = "GUST Font License";
|
2023-10-30 20:41:44 +00:00
|
|
|
url = "https://www.gust.org.pl/projects/e-foundry/licenses/GUST-FONT-LICENSE.txt";
|
2023-06-19 00:26:43 +01:00
|
|
|
};
|
|
|
|
|
2023-06-19 00:26:27 +01:00
|
|
|
gfsl = {
|
|
|
|
fullName = "GUST Font Source License";
|
2023-10-30 20:41:44 +00:00
|
|
|
url = "https://www.gust.org.pl/projects/e-foundry/licenses/GUST-FONT-SOURCE-LICENSE.txt";
|
2023-06-19 00:26:27 +01:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
gpl1Only = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "GPL-1.0-only";
|
2014-11-24 03:46:55 +00:00
|
|
|
fullName = "GNU General Public License v1.0 only";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
gpl1Plus = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "GPL-1.0-or-later";
|
2014-11-06 00:44:33 +00:00
|
|
|
fullName = "GNU General Public License v1.0 or later";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
gpl2Only = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "GPL-2.0-only";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "GNU General Public License v2.0 only";
|
2014-03-12 20:20:01 +00:00
|
|
|
};
|
2013-03-24 21:45:48 +00:00
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
gpl2Classpath = {
|
2018-10-13 15:29:53 +01:00
|
|
|
spdxId = "GPL-2.0-with-classpath-exception";
|
|
|
|
fullName = "GNU General Public License v2.0 only (with Classpath exception)";
|
|
|
|
};
|
|
|
|
|
2014-11-06 00:44:33 +00:00
|
|
|
gpl2ClasspathPlus = {
|
|
|
|
fullName = "GNU General Public License v2.0 or later (with Classpath exception)";
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception";
|
2014-11-06 00:44:33 +00:00
|
|
|
};
|
|
|
|
|
2010-02-25 13:06:17 +00:00
|
|
|
gpl2Oss = {
|
|
|
|
fullName = "GNU General Public License version 2 only (with OSI approved licenses linking exception)";
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://www.mysql.com/about/legal/licensing/foss-exception";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
2013-03-24 21:45:48 +00:00
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
gpl2Plus = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "GPL-2.0-or-later";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "GNU General Public License v2.0 or later";
|
2014-03-12 20:20:01 +00:00
|
|
|
};
|
2010-02-25 13:06:17 +00:00
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
gpl3Only = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "GPL-3.0-only";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "GNU General Public License v3.0 only";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
2013-03-24 21:45:48 +00:00
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
gpl3Plus = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "GPL-3.0-or-later";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "GNU General Public License v3.0 or later";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
gpl3ClasspathPlus = {
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "GNU General Public License v3.0 or later (with Classpath exception)";
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
hpnd = {
|
2017-09-25 04:01:16 +01:00
|
|
|
spdxId = "HPND";
|
|
|
|
fullName = "Historic Permission Notice and Disclaimer";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
hpndSellVariant = {
|
2020-11-12 00:15:54 +00:00
|
|
|
fullName = "Historical Permission Notice and Disclaimer - sell variant";
|
|
|
|
spdxId = "HPND-sell-variant";
|
|
|
|
};
|
|
|
|
|
2014-11-06 00:44:33 +00:00
|
|
|
# Intel's license, seems free
|
|
|
|
iasl = {
|
|
|
|
fullName = "iASL";
|
2020-04-18 22:13:20 +01:00
|
|
|
url = "https://old.calculate-linux.org/packages/licenses/iASL";
|
2014-11-06 00:44:33 +00:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
ijg = {
|
2015-01-13 15:55:11 +00:00
|
|
|
spdxId = "IJG";
|
|
|
|
fullName = "Independent JPEG Group License";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
imagemagick = {
|
2018-09-10 10:59:51 +01:00
|
|
|
fullName = "ImageMagick License";
|
|
|
|
spdxId = "imagemagick";
|
|
|
|
};
|
|
|
|
|
2022-01-22 17:50:40 +00:00
|
|
|
imlib2 = {
|
|
|
|
spdxId = "Imlib2";
|
|
|
|
fullName = "Imlib2 License";
|
|
|
|
};
|
|
|
|
|
2023-05-28 20:47:50 +01:00
|
|
|
info-zip = {
|
|
|
|
spdxId = "Info-ZIP";
|
|
|
|
fullName = "Info-ZIP License";
|
2023-10-30 20:41:44 +00:00
|
|
|
url = "https://infozip.sourceforge.net/license.html";
|
2023-05-28 20:47:50 +01:00
|
|
|
};
|
|
|
|
|
2017-09-21 14:24:17 +01:00
|
|
|
inria-compcert = {
|
|
|
|
fullName = "INRIA Non-Commercial License Agreement for the CompCert verified compiler";
|
2021-08-26 14:32:15 +01:00
|
|
|
url = "https://compcert.org/doc/LICENSE.txt";
|
2017-09-21 14:24:17 +01:00
|
|
|
free = false;
|
2011-10-14 15:00:50 +01:00
|
|
|
};
|
|
|
|
|
2017-12-30 19:39:17 +00:00
|
|
|
inria-icesl = {
|
2023-09-21 11:48:38 +01:00
|
|
|
fullName = "End User License Agreement for IceSL Software";
|
2021-08-26 14:32:15 +01:00
|
|
|
url = "https://icesl.loria.fr/assets/pdf/EULA_IceSL_binary.pdf";
|
2017-12-30 19:39:17 +00:00
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2023-09-20 23:55:10 +01:00
|
|
|
inria-zelus = {
|
|
|
|
fullName = "INRIA Non-Commercial License Agreement for the Zélus compiler";
|
|
|
|
url = "https://github.com/INRIA/zelus/raw/829f2b97cba93b0543a9ca0272269e6b8fdad356/LICENSE";
|
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
ipa = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "IPA";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "IPA Font License";
|
2014-06-15 17:02:41 +01:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
ipl10 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "IPL-1.0";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "IBM Public License v1.0";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
isc = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "ISC";
|
2014-07-30 17:16:36 +01:00
|
|
|
fullName = "ISC License";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
2013-03-24 21:45:48 +00:00
|
|
|
|
2018-08-18 01:48:40 +01:00
|
|
|
# Proprietary binaries; free to redistribute without modification.
|
2020-08-30 13:33:44 +01:00
|
|
|
databricks = {
|
|
|
|
fullName = "Databricks Proprietary License";
|
|
|
|
url = "https://pypi.org/project/databricks-connect";
|
2020-08-30 13:44:28 +01:00
|
|
|
free = false;
|
2020-08-30 13:33:44 +01:00
|
|
|
};
|
|
|
|
|
2022-07-20 15:39:18 +01:00
|
|
|
databricks-dbx = {
|
|
|
|
fullName = "DataBricks eXtensions aka dbx License";
|
|
|
|
url = "https://github.com/databrickslabs/dbx/blob/743b579a4ac44531f764c6e522dbe5a81a7dc0e4/LICENSE";
|
|
|
|
free = false;
|
|
|
|
redistributable = false;
|
|
|
|
};
|
|
|
|
|
2023-01-09 20:35:27 +00:00
|
|
|
fair = {
|
|
|
|
fullName = "Fair License";
|
|
|
|
spdxId = "Fair";
|
|
|
|
free = true;
|
|
|
|
};
|
|
|
|
|
2023-06-15 10:38:24 +01:00
|
|
|
fairsource09 = {
|
|
|
|
fullName = "Fair Source License, version 0.9";
|
|
|
|
url = "https://fair.io/v0.9.txt";
|
|
|
|
free = false;
|
|
|
|
redistributable = true;
|
|
|
|
};
|
|
|
|
|
2023-07-07 11:37:12 +01:00
|
|
|
hl3 = {
|
|
|
|
fullName = "Hippocratic License v3.0";
|
|
|
|
url = "https://firstdonoharm.dev/version/3/0/core.txt";
|
|
|
|
free = false;
|
|
|
|
redistributable = true;
|
|
|
|
};
|
|
|
|
|
2018-08-18 01:48:40 +01:00
|
|
|
issl = {
|
|
|
|
fullName = "Intel Simplified Software License";
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://software.intel.com/en-us/license/intel-simplified-software-license";
|
2018-08-18 01:48:40 +01:00
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2023-06-18 16:55:21 +01:00
|
|
|
knuth = {
|
|
|
|
fullName = "Knuth CTAN License";
|
|
|
|
spdxId = "Knuth-CTAN";
|
|
|
|
};
|
|
|
|
|
2022-06-22 20:46:04 +01:00
|
|
|
lal12 = {
|
|
|
|
spdxId = "LAL-1.2";
|
|
|
|
fullName = "Licence Art Libre 1.2";
|
|
|
|
};
|
|
|
|
|
|
|
|
lal13 = {
|
|
|
|
spdxId = "LAL-1.3";
|
|
|
|
fullName = "Licence Art Libre 1.3";
|
|
|
|
};
|
|
|
|
|
2023-02-20 21:47:02 +00:00
|
|
|
lens = {
|
|
|
|
fullName = "Lens Terms of Service Agreement";
|
|
|
|
url = "https://k8slens.dev/licenses/tos";
|
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
lgpl2Only = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "LGPL-2.0-only";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "GNU Library General Public License v2 only";
|
2014-03-12 20:20:01 +00:00
|
|
|
};
|
2013-03-24 21:45:48 +00:00
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
lgpl2Plus = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "LGPL-2.0-or-later";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "GNU Library General Public License v2 or later";
|
2010-02-25 15:44:28 +00:00
|
|
|
};
|
2013-03-24 21:45:48 +00:00
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
lgpl21Only = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "LGPL-2.1-only";
|
2019-06-06 15:43:24 +01:00
|
|
|
fullName = "GNU Lesser General Public License v2.1 only";
|
2014-03-12 20:20:01 +00:00
|
|
|
};
|
2013-03-24 21:45:48 +00:00
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
lgpl21Plus = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "LGPL-2.1-or-later";
|
2019-06-06 15:43:24 +01:00
|
|
|
fullName = "GNU Lesser General Public License v2.1 or later";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
2013-03-24 21:45:48 +00:00
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
lgpl3Only = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "LGPL-3.0-only";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "GNU Lesser General Public License v3.0 only";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
2013-03-24 21:45:48 +00:00
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
lgpl3Plus = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "LGPL-3.0-or-later";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "GNU Lesser General Public License v3.0 or later";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
2013-03-24 21:45:48 +00:00
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
lgpllr = {
|
2020-06-21 10:49:56 +01:00
|
|
|
spdxId = "LGPLLR";
|
|
|
|
fullName = "Lesser General Public License For Linguistic Resources";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
libpng = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "Libpng";
|
2014-09-21 18:53:20 +01:00
|
|
|
fullName = "libpng License";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
libpng2 = {
|
2019-06-12 23:04:52 +01:00
|
|
|
spdxId = "libpng-2.0"; # Used since libpng 1.6.36.
|
|
|
|
fullName = "PNG Reference Library version 2";
|
2018-12-03 12:18:31 +00:00
|
|
|
};
|
|
|
|
|
2022-10-09 11:01:58 +01:00
|
|
|
libssh2 = {
|
|
|
|
fullName = "libssh2 License";
|
|
|
|
url = "https://www.libssh2.org/license.html";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
libtiff = {
|
2014-11-05 14:33:11 +00:00
|
|
|
spdxId = "libtiff";
|
|
|
|
fullName = "libtiff License";
|
2014-07-30 17:16:36 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
llgpl21 = {
|
|
|
|
fullName = "Lisp LGPL; GNU Lesser General Public License version 2.1 with Franz Inc. preamble for clarification of LGPL terms in context of Lisp";
|
2020-04-18 22:13:20 +01:00
|
|
|
url = "https://opensource.franz.com/preamble.html";
|
2014-07-30 17:16:36 +01:00
|
|
|
};
|
|
|
|
|
2023-06-18 18:17:09 +01:00
|
|
|
lppl1 = {
|
|
|
|
spdxId = "LPPL-1.0";
|
|
|
|
fullName = "LaTeX Project Public License v1.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
lppl12 = {
|
2014-11-06 00:44:33 +00:00
|
|
|
spdxId = "LPPL-1.2";
|
|
|
|
fullName = "LaTeX Project Public License v1.2";
|
|
|
|
};
|
|
|
|
|
2023-06-18 18:17:29 +01:00
|
|
|
lppl13a = {
|
|
|
|
spdxId = "LPPL-1.3a";
|
|
|
|
fullName = "LaTeX Project Public License v1.3a";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
lppl13c = {
|
2014-12-19 20:00:52 +00:00
|
|
|
spdxId = "LPPL-1.3c";
|
|
|
|
fullName = "LaTeX Project Public License v1.3c";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
lpl-102 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "LPL-1.02";
|
2014-08-14 23:11:09 +01:00
|
|
|
fullName = "Lucent Public License v1.02";
|
|
|
|
};
|
|
|
|
|
2017-04-12 22:13:03 +01:00
|
|
|
miros = {
|
2017-09-04 23:20:30 +01:00
|
|
|
fullName = "MirOS License";
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://opensource.org/licenses/MirOS";
|
2017-04-12 22:13:03 +01:00
|
|
|
};
|
|
|
|
|
2014-08-30 06:28:26 +01:00
|
|
|
# spdx.org does not (yet) differentiate between the X11 and Expat versions
|
2020-04-18 22:13:20 +01:00
|
|
|
# for details see https://en.wikipedia.org/wiki/MIT_License#Various_versions
|
2021-07-20 20:13:00 +01:00
|
|
|
mit = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "MIT";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "MIT License";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
2022-01-28 14:23:25 +00:00
|
|
|
# https://spdx.org/licenses/MIT-feh.html
|
|
|
|
mit-feh = {
|
|
|
|
spdxId = "MIT-feh";
|
|
|
|
fullName = "feh License";
|
|
|
|
};
|
2013-03-24 21:45:48 +00:00
|
|
|
|
2022-01-23 17:05:27 +00:00
|
|
|
mitAdvertising = {
|
|
|
|
spdxId = "MIT-advertising";
|
|
|
|
fullName = "Enlightenment License (e16)";
|
|
|
|
};
|
|
|
|
|
2022-03-24 15:17:24 +00:00
|
|
|
mit0 = {
|
|
|
|
spdxId = "MIT-0";
|
|
|
|
fullName = "MIT No Attribution";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
mpl10 = {
|
2015-03-27 00:22:11 +00:00
|
|
|
spdxId = "MPL-1.0";
|
|
|
|
fullName = "Mozilla Public License 1.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
mpl11 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "MPL-1.1";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "Mozilla Public License 1.1";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
2013-03-24 21:45:48 +00:00
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
mpl20 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "MPL-2.0";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "Mozilla Public License 2.0";
|
2013-10-20 21:30:11 +01:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
mspl = {
|
2017-02-03 01:16:45 +00:00
|
|
|
spdxId = "MS-PL";
|
|
|
|
fullName = "Microsoft Public License";
|
|
|
|
};
|
|
|
|
|
2023-06-16 01:27:53 +01:00
|
|
|
mulan-psl2 = {
|
|
|
|
spdxId = "MulanPSL-2.0";
|
|
|
|
fullName = "Mulan Permissive Software License, Version 2";
|
|
|
|
url = "https://license.coscl.org.cn/MulanPSL2";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
nasa13 = {
|
2018-12-11 20:20:29 +00:00
|
|
|
spdxId = "NASA-1.3";
|
|
|
|
fullName = "NASA Open Source Agreement 1.3";
|
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
ncsa = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "NCSA";
|
2023-01-24 10:24:04 +00:00
|
|
|
fullName = "University of Illinois/NCSA Open Source License";
|
|
|
|
};
|
|
|
|
|
2023-09-24 22:19:12 +01:00
|
|
|
ncul1 = {
|
|
|
|
spdxId = "NCUL1";
|
|
|
|
fullName = "Netdata Cloud UI License v1.0";
|
|
|
|
free = false;
|
|
|
|
redistributable = true; # Only if used in Netdata products.
|
|
|
|
url = "https://raw.githubusercontent.com/netdata/netdata/master/web/gui/v2/LICENSE.md";
|
|
|
|
};
|
|
|
|
|
2023-01-24 10:24:04 +00:00
|
|
|
nlpl = {
|
|
|
|
spdxId = "NLPL";
|
|
|
|
fullName = "No Limit Public License";
|
2014-08-28 22:14:10 +01:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
nposl3 = {
|
2017-11-11 20:35:53 +00:00
|
|
|
spdxId = "NPOSL-3.0";
|
|
|
|
fullName = "Non-Profit Open Software License 3.0";
|
|
|
|
};
|
|
|
|
|
2019-12-23 08:31:09 +00:00
|
|
|
nvidiaCuda = {
|
2023-10-17 21:57:02 +01:00
|
|
|
shortName = "CUDA EULA";
|
2023-10-17 21:40:47 +01:00
|
|
|
fullName = "CUDA Toolkit End User License Agreement (EULA)";
|
2019-12-23 08:31:09 +00:00
|
|
|
url = "https://docs.nvidia.com/cuda/eula/index.html#cuda-toolkit-supplement-license-agreement";
|
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2023-10-17 21:44:10 +01:00
|
|
|
nvidiaCudaRedist = {
|
|
|
|
shortName = "CUDA EULA";
|
|
|
|
fullName = "CUDA Toolkit End User License Agreement (EULA)";
|
|
|
|
url = "https://docs.nvidia.com/cuda/eula/index.html#cuda-toolkit-supplement-license-agreement";
|
|
|
|
free = false;
|
|
|
|
redistributable = true;
|
|
|
|
};
|
|
|
|
|
2020-06-25 01:38:06 +01:00
|
|
|
obsidian = {
|
|
|
|
fullName = "Obsidian End User Agreement";
|
|
|
|
url = "https://obsidian.md/eula";
|
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2023-05-03 12:56:49 +01:00
|
|
|
ocamlLgplLinkingException = {
|
|
|
|
spdxId = "OCaml-LGPL-linking-exception";
|
|
|
|
fullName = "OCaml LGPL Linking Exception";
|
|
|
|
};
|
|
|
|
|
2018-10-10 20:03:45 +01:00
|
|
|
ocamlpro_nc = {
|
|
|
|
fullName = "OCamlPro Non Commercial license version 1";
|
|
|
|
url = "https://alt-ergo.ocamlpro.com/http/alt-ergo-2.2.0/OCamlPro-Non-Commercial-License.pdf";
|
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
odbl = {
|
2021-03-18 01:52:19 +00:00
|
|
|
spdxId = "ODbL-1.0";
|
|
|
|
fullName = "Open Data Commons Open Database License v1.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
ofl = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "OFL-1.1";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "SIL Open Font License 1.1";
|
2014-05-06 09:04:43 +01:00
|
|
|
};
|
|
|
|
|
2022-08-22 10:16:50 +01:00
|
|
|
oml = {
|
|
|
|
spdxId = "OML";
|
|
|
|
fullName = "Open Market License";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
openldap = {
|
2015-07-04 13:01:07 +01:00
|
|
|
spdxId = "OLDAP-2.8";
|
|
|
|
fullName = "Open LDAP Public License v2.8";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
openssl = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "OpenSSL";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "OpenSSL License";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
2013-03-24 21:45:48 +00:00
|
|
|
|
2023-06-26 19:31:28 +01:00
|
|
|
opubl = {
|
|
|
|
spdxId = "OPUBL-1.0";
|
|
|
|
fullName = "Open Publication License v1.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
osl2 = {
|
2019-02-09 18:06:51 +00:00
|
|
|
spdxId = "OSL-2.0";
|
|
|
|
fullName = "Open Software License 2.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
osl21 = {
|
2017-11-11 20:35:53 +00:00
|
|
|
spdxId = "OSL-2.1";
|
|
|
|
fullName = "Open Software License 2.1";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
osl3 = {
|
2017-11-17 19:19:41 +00:00
|
|
|
spdxId = "OSL-3.0";
|
|
|
|
fullName = "Open Software License 3.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
parity70 = {
|
2020-11-18 02:49:31 +00:00
|
|
|
spdxId = "Parity-7.0.0";
|
|
|
|
fullName = "Parity Public License 7.0.0";
|
|
|
|
url = "https://paritylicense.com/versions/7.0.0.html";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
php301 = {
|
2014-11-06 00:44:33 +00:00
|
|
|
spdxId = "PHP-3.01";
|
|
|
|
fullName = "PHP License v3.01";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
postgresql = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "PostgreSQL";
|
2014-09-04 19:36:36 +01:00
|
|
|
fullName = "PostgreSQL License";
|
|
|
|
};
|
|
|
|
|
2018-02-11 17:34:40 +00:00
|
|
|
postman = {
|
|
|
|
fullName = "Postman EULA";
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://www.getpostman.com/licenses/postman_base_app";
|
2018-02-11 17:34:40 +00:00
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
psfl = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "Python-2.0";
|
2014-07-30 17:16:36 +01:00
|
|
|
fullName = "Python Software Foundation License version 2";
|
2020-04-18 22:13:20 +01:00
|
|
|
url = "https://docs.python.org/license.html";
|
2014-07-30 17:16:36 +01:00
|
|
|
};
|
|
|
|
|
2010-02-25 13:06:17 +00:00
|
|
|
publicDomain = {
|
2014-11-05 13:52:05 +00:00
|
|
|
fullName = "Public Domain";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
2013-03-24 21:45:48 +00:00
|
|
|
|
2018-09-03 20:52:21 +01:00
|
|
|
purdueBsd = {
|
|
|
|
fullName = " Purdue BSD-Style License"; # also know as lsof license
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://enterprise.dejacode.com/licenses/public/purdue-bsd";
|
2018-09-03 20:52:21 +01:00
|
|
|
};
|
|
|
|
|
2020-09-12 21:13:27 +01:00
|
|
|
prosperity30 = {
|
|
|
|
fullName = "Prosperity-3.0.0";
|
|
|
|
free = false;
|
|
|
|
url = "https://prosperitylicense.com/versions/3.0.0.html";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
qhull = {
|
2019-09-22 21:21:27 +01:00
|
|
|
spdxId = "Qhull";
|
|
|
|
fullName = "Qhull License";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
qpl = {
|
2014-11-06 00:44:33 +00:00
|
|
|
spdxId = "QPL-1.0";
|
|
|
|
fullName = "Q Public License 1.0";
|
|
|
|
};
|
|
|
|
|
|
|
|
qwt = {
|
|
|
|
fullName = "Qwt License, Version 1.0";
|
2020-04-18 22:13:20 +01:00
|
|
|
url = "https://qwt.sourceforge.io/qwtlicense.html";
|
2014-11-06 00:44:33 +00:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
ruby = {
|
2014-11-06 00:44:33 +00:00
|
|
|
spdxId = "Ruby";
|
|
|
|
fullName = "Ruby License";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
sendmail = {
|
2018-10-18 20:00:17 +01:00
|
|
|
spdxId = "Sendmail";
|
|
|
|
fullName = "Sendmail License";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
sgi-b-20 = {
|
2014-11-06 00:44:33 +00:00
|
|
|
spdxId = "SGI-B-2.0";
|
|
|
|
fullName = "SGI Free Software License B v2.0";
|
|
|
|
};
|
|
|
|
|
2022-12-26 17:49:44 +00:00
|
|
|
# Gentoo seems to treat it as a license:
|
|
|
|
# https://gitweb.gentoo.org/repo/gentoo.git/tree/licenses/SGMLUG?id=7d999af4a47bf55e53e54713d98d145f935935c1
|
|
|
|
sgmlug = {
|
|
|
|
fullName = "SGML UG SGML Parser Materials license";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
sleepycat = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "Sleepycat";
|
2014-11-05 14:33:11 +00:00
|
|
|
fullName = "Sleepycat License";
|
2012-02-26 17:23:16 +00:00
|
|
|
};
|
|
|
|
|
2017-01-09 05:41:06 +00:00
|
|
|
smail = {
|
|
|
|
shortName = "smail";
|
|
|
|
fullName = "SMAIL General Public License";
|
2020-04-18 22:13:20 +01:00
|
|
|
url = "https://sources.debian.org/copyright/license/debianutils/4.9.1/";
|
2017-01-09 05:41:06 +00:00
|
|
|
};
|
|
|
|
|
2018-05-03 08:42:24 +01:00
|
|
|
sspl = {
|
|
|
|
shortName = "SSPL";
|
|
|
|
fullName = "Server Side Public License";
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://www.mongodb.com/licensing/server-side-public-license";
|
2018-05-03 08:42:24 +01:00
|
|
|
free = false;
|
2021-07-20 20:34:21 +01:00
|
|
|
# NOTE Debatable.
|
|
|
|
# The license a slightly modified AGPL but still considered unfree by the
|
|
|
|
# OSI for what seem like political reasons
|
|
|
|
redistributable = true; # Definitely redistributable though, it's an AGPL derivative
|
2018-05-03 08:42:24 +01:00
|
|
|
};
|
|
|
|
|
2020-12-02 11:38:02 +00:00
|
|
|
stk = {
|
|
|
|
shortName = "stk";
|
|
|
|
fullName = "Synthesis Tool Kit 4.3";
|
2021-06-20 15:26:23 +01:00
|
|
|
url = "https://github.com/thestk/stk/blob/master/LICENSE";
|
2020-12-02 11:38:02 +00:00
|
|
|
};
|
|
|
|
|
2023-06-25 08:07:49 +01:00
|
|
|
sustainableUse = {
|
|
|
|
shortName = "sustainable";
|
|
|
|
fullName = "Sustainable Use License";
|
|
|
|
url = "https://github.com/n8n-io/n8n/blob/master/LICENSE.md";
|
|
|
|
free = false;
|
|
|
|
redistributable = false; # only free to redistribute "for non-commercial purposes"
|
|
|
|
};
|
|
|
|
|
2023-03-06 12:05:31 +00:00
|
|
|
tsl = {
|
|
|
|
shortName = "TSL";
|
|
|
|
fullName = "Timescale License Agreegment";
|
|
|
|
url = "https://github.com/timescale/timescaledb/blob/main/tsl/LICENSE-TIMESCALE";
|
|
|
|
unfree = true;
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
tcltk = {
|
2014-11-05 14:33:11 +00:00
|
|
|
spdxId = "TCL";
|
|
|
|
fullName = "TCL/TK License";
|
2012-09-09 05:23:54 +01:00
|
|
|
};
|
2013-03-24 21:45:21 +00:00
|
|
|
|
2022-08-22 10:16:50 +01:00
|
|
|
ucd = {
|
|
|
|
fullName = "Unicode Character Database License";
|
|
|
|
url = "https://fedoraproject.org/wiki/Licensing:UCD";
|
|
|
|
};
|
|
|
|
|
2015-11-18 11:04:15 +00:00
|
|
|
ufl = {
|
|
|
|
fullName = "Ubuntu Font License 1.0";
|
2020-04-18 22:13:20 +01:00
|
|
|
url = "https://ubuntu.com/legal/font-licence";
|
2015-11-18 11:04:15 +00:00
|
|
|
};
|
|
|
|
|
2014-11-05 14:15:00 +00:00
|
|
|
unfree = {
|
|
|
|
fullName = "Unfree";
|
|
|
|
free = false;
|
|
|
|
};
|
2013-03-24 21:45:21 +00:00
|
|
|
|
2014-11-05 14:15:00 +00:00
|
|
|
unfreeRedistributable = {
|
|
|
|
fullName = "Unfree redistributable";
|
|
|
|
free = false;
|
2021-07-20 20:34:21 +01:00
|
|
|
redistributable = true;
|
2014-11-05 14:15:00 +00:00
|
|
|
};
|
2013-03-24 21:45:21 +00:00
|
|
|
|
2014-11-05 14:15:00 +00:00
|
|
|
unfreeRedistributableFirmware = {
|
|
|
|
fullName = "Unfree redistributable firmware";
|
2021-07-20 20:34:21 +01:00
|
|
|
redistributable = true;
|
2014-11-05 14:15:00 +00:00
|
|
|
# Note: we currently consider these "free" for inclusion in the
|
|
|
|
# channel and NixOS images.
|
|
|
|
};
|
2013-06-05 21:44:08 +01:00
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
unicode-dfs-2015 = {
|
2021-05-30 21:06:45 +01:00
|
|
|
spdxId = "Unicode-DFS-2015";
|
|
|
|
fullName = "Unicode License Agreement - Data Files and Software (2015)";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
unicode-dfs-2016 = {
|
2020-03-27 21:15:03 +00:00
|
|
|
spdxId = "Unicode-DFS-2016";
|
|
|
|
fullName = "Unicode License Agreement - Data Files and Software (2016)";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
unlicense = {
|
2014-11-05 14:33:11 +00:00
|
|
|
spdxId = "Unlicense";
|
|
|
|
fullName = "The Unlicense";
|
2014-10-22 17:43:34 +01:00
|
|
|
};
|
|
|
|
|
2016-09-06 22:44:41 +01:00
|
|
|
upl = {
|
|
|
|
fullName = "Universal Permissive License";
|
|
|
|
url = "https://oss.oracle.com/licenses/upl/";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
vim = {
|
2015-05-26 13:43:27 +01:00
|
|
|
spdxId = "Vim";
|
|
|
|
fullName = "Vim License";
|
|
|
|
};
|
|
|
|
|
2018-08-08 15:21:18 +01:00
|
|
|
virtualbox-puel = {
|
|
|
|
fullName = "Oracle VM VirtualBox Extension Pack Personal Use and Evaluation License (PUEL)";
|
|
|
|
url = "https://www.virtualbox.org/wiki/VirtualBox_PUEL";
|
|
|
|
free = false;
|
|
|
|
};
|
|
|
|
|
2022-02-20 21:40:38 +00:00
|
|
|
vol-sl = {
|
|
|
|
fullName = "Volatility Software License, Version 1.0";
|
|
|
|
url = "https://www.volatilityfoundation.org/license/vsl-v1.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
vsl10 = {
|
2014-11-06 00:44:33 +00:00
|
|
|
spdxId = "VSL-1.0";
|
|
|
|
fullName = "Vovida Software License v1.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
watcom = {
|
2018-01-05 03:44:06 +00:00
|
|
|
spdxId = "Watcom-1.0";
|
|
|
|
fullName = "Sybase Open Watcom Public License 1.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
w3c = {
|
2014-11-06 00:44:33 +00:00
|
|
|
spdxId = "W3C";
|
|
|
|
fullName = "W3C Software Notice and License";
|
|
|
|
};
|
|
|
|
|
2014-06-12 05:05:16 +01:00
|
|
|
wadalab = {
|
|
|
|
fullName = "Wadalab Font License";
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://fedoraproject.org/wiki/Licensing:Wadalab?rd=Licensing/Wadalab";
|
2014-06-12 05:05:16 +01:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
wtfpl = {
|
2014-11-06 00:44:33 +00:00
|
|
|
spdxId = "WTFPL";
|
|
|
|
fullName = "Do What The F*ck You Want To Public License";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
wxWindows = {
|
2018-12-24 23:29:58 +00:00
|
|
|
spdxId = "wxWindows";
|
2017-04-23 21:20:35 +01:00
|
|
|
fullName = "wxWindows Library Licence, Version 3.1";
|
|
|
|
};
|
|
|
|
|
2022-12-13 10:57:30 +00:00
|
|
|
x11 = {
|
|
|
|
spdxId = "X11";
|
|
|
|
fullName = "X11 License";
|
|
|
|
};
|
|
|
|
|
2018-08-18 23:00:04 +01:00
|
|
|
xfig = {
|
|
|
|
fullName = "xfig";
|
2023-10-30 20:41:44 +00:00
|
|
|
url = "https://mcj.sourceforge.net/authors.html#xfig";
|
2018-08-18 23:00:04 +01:00
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
zlib = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "Zlib";
|
2014-07-30 17:04:57 +01:00
|
|
|
fullName = "zlib License";
|
2010-02-25 13:06:17 +00:00
|
|
|
};
|
2013-04-17 00:25:45 +01:00
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
zpl20 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "ZPL-2.0";
|
2013-04-17 00:25:45 +01:00
|
|
|
fullName = "Zope Public License 2.0";
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:13:00 +01:00
|
|
|
zpl21 = {
|
2014-11-05 14:26:45 +00:00
|
|
|
spdxId = "ZPL-2.1";
|
2013-04-17 00:25:45 +01:00
|
|
|
fullName = "Zope Public License 2.1";
|
|
|
|
};
|
2020-07-05 16:51:30 +01:00
|
|
|
} // {
|
|
|
|
# TODO: remove legacy aliases
|
2021-07-20 20:13:00 +01:00
|
|
|
agpl3 = {
|
2020-12-22 18:25:33 +00:00
|
|
|
spdxId = "AGPL-3.0";
|
|
|
|
fullName = "GNU Affero General Public License v3.0";
|
|
|
|
deprecated = true;
|
|
|
|
};
|
2021-07-20 20:13:00 +01:00
|
|
|
gpl2 = {
|
2020-12-22 18:25:33 +00:00
|
|
|
spdxId = "GPL-2.0";
|
|
|
|
fullName = "GNU General Public License v2.0";
|
|
|
|
deprecated = true;
|
|
|
|
};
|
2021-07-20 20:13:00 +01:00
|
|
|
gpl3 = {
|
2020-12-22 18:25:33 +00:00
|
|
|
spdxId = "GPL-3.0";
|
|
|
|
fullName = "GNU General Public License v3.0";
|
|
|
|
deprecated = true;
|
|
|
|
};
|
2021-07-20 20:13:00 +01:00
|
|
|
lgpl2 = {
|
2020-12-22 18:25:33 +00:00
|
|
|
spdxId = "LGPL-2.0";
|
|
|
|
fullName = "GNU Library General Public License v2";
|
|
|
|
deprecated = true;
|
|
|
|
};
|
2021-07-20 20:13:00 +01:00
|
|
|
lgpl21 = {
|
2020-12-22 18:25:33 +00:00
|
|
|
spdxId = "LGPL-2.1";
|
|
|
|
fullName = "GNU Lesser General Public License v2.1";
|
|
|
|
deprecated = true;
|
|
|
|
};
|
2021-07-20 20:13:00 +01:00
|
|
|
lgpl3 = {
|
2020-12-22 18:25:33 +00:00
|
|
|
spdxId = "LGPL-3.0";
|
|
|
|
fullName = "GNU Lesser General Public License v3.0";
|
|
|
|
deprecated = true;
|
|
|
|
};
|
2021-02-25 22:01:09 +00:00
|
|
|
})
|