2014-07-30 10:04:57 -06:00
|
|
|
let
|
|
|
|
spdx = lic: lic // {
|
|
|
|
url = "http://spdx.org/licenses/${lic.shortName}";
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
2014-08-12 11:05:54 -06:00
|
|
|
rec {
|
2014-07-30 10:04:57 -06:00
|
|
|
/* License identifiers from spdx.org where possible.
|
2010-02-25 06:06:17 -07: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.
|
|
|
|
*/
|
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
agpl3 = spdx {
|
|
|
|
shortName = "AGPL-3.0";
|
|
|
|
fullName = "GNU Affero General Public License v3.0";
|
2013-05-30 19:07:36 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
agpl3Plus = {
|
2014-07-30 10:04:57 -06:00
|
|
|
shortName = "AGPL-3.0+";
|
|
|
|
fullName = "GNU Affero General Public License v3.0 or later";
|
|
|
|
inherit (agpl3) url;
|
2013-05-30 19:07:36 -06:00
|
|
|
};
|
|
|
|
|
2013-06-16 15:35:09 -06:00
|
|
|
amd = {
|
|
|
|
shortName = "amd";
|
|
|
|
fullName = "AMD License Agreement";
|
2014-03-12 14:20:01 -06:00
|
|
|
url = http://developer.amd.com/amd-license-agreement/;
|
2014-10-04 13:15:36 -06:00
|
|
|
};
|
2013-06-16 15:35:09 -06:00
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
apsl20 = spdx {
|
|
|
|
shortName = "APSL-2.0";
|
2014-03-12 14:20:01 -06:00
|
|
|
fullName = "Apple Public Source License 2.0";
|
|
|
|
};
|
2013-08-12 23:32:34 -06:00
|
|
|
|
2014-07-30 10:16:36 -06:00
|
|
|
artistic2 = spdx {
|
|
|
|
shortName = "Artistic-2.0";
|
|
|
|
fullName = "Artistic License 2.0";
|
|
|
|
};
|
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
asl20 = spdx {
|
|
|
|
shortName = "Apache-2.0";
|
|
|
|
fullName = "Apache License 2.0";
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
2013-03-24 15:45:48 -06:00
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
boost = spdx {
|
|
|
|
shortName = "BSL-1.0";
|
|
|
|
fullName = "Boost Software License 1.0";
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
bsd2 = spdx {
|
|
|
|
shortName = "BSD-2-Clause";
|
|
|
|
fullName = ''BSD 2-clause "Simplified" License'';
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
bsd3 = spdx {
|
|
|
|
shortName = "BSD-3-Clause";
|
|
|
|
fullName = ''BSD 3-clause "New" or "Revised" License'';
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
bsdOriginal = spdx {
|
|
|
|
shortName = "BSD-4-Clause";
|
|
|
|
fullName = ''BSD 4-clause "Original" or "Old" License'';
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
|
|
|
|
2014-08-19 07:02:20 -06:00
|
|
|
cc0 = spdx {
|
|
|
|
shortName = "CC0-1.0";
|
|
|
|
fullName = ''Creative Commons Zero v1.0 Universal'';
|
|
|
|
};
|
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
cc-by-30 = spdx {
|
|
|
|
shortName = "CC-BY-3.0";
|
2014-04-10 14:29:36 -06:00
|
|
|
fullName = "Creative Commons Attribution 3.0";
|
|
|
|
};
|
|
|
|
|
2014-10-12 18:23:18 -06:00
|
|
|
cc-by-sa-30 = spdx {
|
|
|
|
shortName = "CC-BY-SA-3.0";
|
|
|
|
fullName = "Creative Commons Attribution Share Alike 3.0";
|
|
|
|
};
|
|
|
|
|
2014-09-11 12:02:36 -06:00
|
|
|
cc-by-40 = spdx {
|
|
|
|
shortName = "CC-BY-4.0";
|
|
|
|
fullName = "Creative Commons Attribution 4.0";
|
|
|
|
};
|
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
cddl = spdx {
|
|
|
|
shortName = "CDDL-1.0";
|
|
|
|
fullName = "Common Development and Distribution License 1.0";
|
2012-10-05 10:11:25 -06:00
|
|
|
};
|
|
|
|
|
2014-09-24 17:09:30 -06:00
|
|
|
cecill-b = spdx {
|
|
|
|
shortName = "CECILL-B";
|
|
|
|
fullName = "CeCILL-B Free Software License Agreement";
|
|
|
|
};
|
|
|
|
|
2014-07-30 10:16:36 -06:00
|
|
|
cecill-c = spdx {
|
|
|
|
shortName = "CECILL-C";
|
|
|
|
fullName = "CeCILL-C Free Software License Agreement";
|
|
|
|
};
|
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
cpl10 = spdx {
|
|
|
|
shortName = "CPL-1.0";
|
|
|
|
fullName = "Common Public License 1.0";
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
epl10 = spdx {
|
|
|
|
shortName = "EPL-1.0";
|
|
|
|
fullName = "Eclipse Public License 1.0";
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
|
|
|
|
2014-08-12 11:05:54 -06:00
|
|
|
free = "free";
|
2014-06-27 01:48:42 -06:00
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
gpl2 = spdx {
|
|
|
|
shortName = "GPL-2.0";
|
|
|
|
fullName = "GNU General Public License v2.0 only";
|
2014-03-12 14:20:01 -06:00
|
|
|
};
|
2013-03-24 15:45:48 -06:00
|
|
|
|
2010-02-25 06:06:17 -07:00
|
|
|
gpl2Oss = {
|
2014-07-30 10:04:57 -06:00
|
|
|
shortName = "GPL-2.0-with-OSS";
|
2010-02-25 06:06:17 -07:00
|
|
|
fullName = "GNU General Public License version 2 only (with OSI approved licenses linking exception)";
|
|
|
|
url = http://www.mysql.com/about/legal/licensing/foss-exception;
|
|
|
|
};
|
2013-03-24 15:45:48 -06:00
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
gpl2Plus = spdx {
|
|
|
|
shortName = "GPL-2.0+";
|
|
|
|
fullName = "GNU General Public License v2.0 or later";
|
2014-03-12 14:20:01 -06:00
|
|
|
};
|
2010-02-25 06:06:17 -07:00
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
gpl3 = spdx {
|
|
|
|
shortName = "GPL-3.0";
|
|
|
|
fullName = "GNU General Public License v3.0 only";
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
2013-03-24 15:45:48 -06:00
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
gpl3Plus = spdx {
|
|
|
|
shortName = "GPL-3.0+";
|
|
|
|
fullName = "GNU General Public License v3.0 or later";
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
gpl3ClasspathPlus = {
|
2014-07-30 10:04:57 -06:00
|
|
|
shortName = "GPL-3.0+-with-classpath-exception";
|
|
|
|
fullName = "GNU General Public License v3.0 or later (with Classpath exception)";
|
2010-02-25 06:06:17 -07:00
|
|
|
url = https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception;
|
|
|
|
};
|
|
|
|
|
2014-07-30 10:16:36 -06:00
|
|
|
inria = {
|
|
|
|
shortName = "INRIA-NCLA";
|
|
|
|
fullName = "INRIA Non-Commercial License Agreement";
|
|
|
|
url = "http://compcert.inria.fr/doc/LICENSE";
|
2011-10-14 08:00:50 -06:00
|
|
|
};
|
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
ipa = spdx {
|
|
|
|
shortName = "IPA";
|
|
|
|
fullName = "IPA Font License";
|
2014-06-15 10:02:41 -06:00
|
|
|
};
|
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
ipl10 = spdx {
|
|
|
|
shortName = "IPL-1.0";
|
|
|
|
fullName = "IBM Public License v1.0";
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
|
|
|
|
2014-07-30 10:16:36 -06:00
|
|
|
isc = spdx {
|
|
|
|
shortName = "ISC";
|
|
|
|
fullName = "ISC License";
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
2013-03-24 15:45:48 -06:00
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
lgpl2 = spdx {
|
|
|
|
shortName = "LGPL-2.0";
|
|
|
|
fullName = "GNU Library General Public License v2 only";
|
2014-03-12 14:20:01 -06:00
|
|
|
};
|
2013-03-24 15:45:48 -06:00
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
lgpl2Plus = spdx {
|
|
|
|
shortName = "LGPL-2.0+";
|
|
|
|
fullName = "GNU Library General Public License v2 or later";
|
2010-02-25 08:44:28 -07:00
|
|
|
};
|
2013-03-24 15:45:48 -06:00
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
lgpl21 = spdx {
|
|
|
|
shortName = "LGPL-2.1";
|
|
|
|
fullName = "GNU Library General Public License v2.1 only";
|
2014-03-12 14:20:01 -06:00
|
|
|
};
|
2013-03-24 15:45:48 -06:00
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
lgpl21Plus = spdx {
|
|
|
|
shortName = "LGPL-2.1+";
|
|
|
|
fullName = "GNU Library General Public License v2.1 or later";
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
2013-03-24 15:45:48 -06:00
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
lgpl3 = spdx {
|
|
|
|
shortName = "LGPL-3.0";
|
|
|
|
fullName = "GNU Lesser General Public License v3.0 only";
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
2013-03-24 15:45:48 -06:00
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
lgpl3Plus = spdx {
|
|
|
|
shortName = "LGPL-3.0+";
|
|
|
|
fullName = "GNU Lesser General Public License v3.0 or later";
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
2013-03-24 15:45:48 -06:00
|
|
|
|
2014-09-21 11:53:20 -06:00
|
|
|
libpng = spdx {
|
|
|
|
shortName = "Libpng";
|
|
|
|
fullName = "libpng License";
|
|
|
|
};
|
|
|
|
|
2014-07-30 10:16:36 -06:00
|
|
|
libtiff = {
|
|
|
|
shortName = "libtiff";
|
|
|
|
fullName = "libtiff license";
|
|
|
|
url = https://fedoraproject.org/wiki/Licensing/libtiff;
|
|
|
|
};
|
|
|
|
|
|
|
|
llgpl21 = {
|
|
|
|
shortName = "LLGPL-2.1";
|
|
|
|
fullName = "Lisp LGPL; GNU Lesser General Public License version 2.1 with Franz Inc. preamble for clarification of LGPL terms in context of Lisp";
|
|
|
|
url = http://opensource.franz.com/preamble.html;
|
|
|
|
};
|
|
|
|
|
2014-08-14 16:11:09 -06:00
|
|
|
lpl-102 = spdx {
|
|
|
|
shortName = "LPL-1.02";
|
|
|
|
fullName = "Lucent Public License v1.02";
|
|
|
|
};
|
|
|
|
|
2014-08-29 23:28:26 -06:00
|
|
|
# spdx.org does not (yet) differentiate between the X11 and Expat versions
|
|
|
|
# for details see http://en.wikipedia.org/wiki/MIT_License#Various_versions
|
2014-07-30 10:04:57 -06:00
|
|
|
mit = spdx {
|
2010-02-25 06:06:17 -07:00
|
|
|
shortName = "MIT";
|
2014-07-30 10:04:57 -06:00
|
|
|
fullName = "MIT License";
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
2013-03-24 15:45:48 -06:00
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
mpl11 = spdx {
|
|
|
|
shortName = "MPL-1.1";
|
|
|
|
fullName = "Mozilla Public License 1.1";
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
2013-03-24 15:45:48 -06:00
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
mpl20 = spdx {
|
|
|
|
shortName = "MPL-2.0";
|
|
|
|
fullName = "Mozilla Public License 2.0";
|
2013-10-20 14:30:11 -06:00
|
|
|
};
|
|
|
|
|
2014-07-30 10:16:36 -06:00
|
|
|
msrla = {
|
|
|
|
shortName = "MSR-LA";
|
|
|
|
fullName = "Microsoft Research License Agreement";
|
|
|
|
url = "http://research.microsoft.com/en-us/projects/pex/msr-la.txt";
|
|
|
|
};
|
|
|
|
|
2014-08-28 15:14:10 -06:00
|
|
|
ncsa = spdx {
|
|
|
|
shortName = "NCSA";
|
|
|
|
fullName = "University of Illinois/NCSA Open Source License";
|
|
|
|
};
|
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
ofl = spdx {
|
|
|
|
shortName = "OFL-1.1";
|
|
|
|
fullName = "SIL Open Font License 1.1";
|
2014-05-06 02:04:43 -06:00
|
|
|
};
|
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
openssl = spdx {
|
|
|
|
shortName = "OpenSSL";
|
|
|
|
fullName = "OpenSSL License";
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
2013-03-24 15:45:48 -06:00
|
|
|
|
2014-09-04 12:40:03 -06:00
|
|
|
postgresql = spdx {
|
2014-09-04 12:36:36 -06:00
|
|
|
shortName = "PostgreSQL";
|
|
|
|
fullName = "PostgreSQL License";
|
|
|
|
};
|
|
|
|
|
2014-07-30 10:16:36 -06:00
|
|
|
psfl = spdx {
|
|
|
|
shortName = "Python-2.0";
|
|
|
|
fullName = "Python Software Foundation License version 2";
|
|
|
|
#url = http://docs.python.org/license.html;
|
|
|
|
};
|
|
|
|
|
2010-02-25 06:06:17 -07:00
|
|
|
publicDomain = {
|
|
|
|
shortName = "Public Domain";
|
|
|
|
fullname = "Public Domain";
|
|
|
|
};
|
2013-03-24 15:45:48 -06:00
|
|
|
|
2014-07-30 10:16:36 -06:00
|
|
|
sleepycat = spdx {
|
|
|
|
shortName = "Sleepycat";
|
|
|
|
fullName = "Sleepycat License";
|
2012-02-26 10:23:16 -07:00
|
|
|
};
|
|
|
|
|
2012-09-08 22:23:54 -06:00
|
|
|
tcltk = {
|
|
|
|
shortName = "Tcl/Tk";
|
|
|
|
fullName = "Tcl/Tk license";
|
|
|
|
url = http://www.tcl.tk/software/tcltk/license.html;
|
|
|
|
};
|
2013-03-24 15:45:21 -06:00
|
|
|
|
2014-08-12 11:05:54 -06:00
|
|
|
unfree = "unfree";
|
2013-03-24 15:45:21 -06:00
|
|
|
|
2014-08-12 11:05:54 -06:00
|
|
|
unfreeRedistributable = "unfree-redistributable";
|
2013-03-24 15:45:21 -06:00
|
|
|
|
2014-08-12 11:05:54 -06:00
|
|
|
unfreeRedistributableFirmware = "unfree-redistributable-firmware";
|
2013-06-05 14:44:08 -06:00
|
|
|
|
2014-10-22 10:43:34 -06:00
|
|
|
unlicense = {
|
|
|
|
shortName = "Unlicense";
|
|
|
|
fullName = "Unlicense";
|
|
|
|
url = http://unlicense.org/;
|
|
|
|
};
|
|
|
|
|
2014-06-11 22:05:16 -06:00
|
|
|
wadalab = {
|
|
|
|
shortName = "wadalab";
|
|
|
|
fullName = "Wadalab Font License";
|
|
|
|
url = https://fedoraproject.org/wiki/Licensing:Wadalab?rd=Licensing/Wadalab;
|
|
|
|
};
|
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
zlib = spdx {
|
|
|
|
shortName = "Zlib";
|
|
|
|
fullName = "zlib License";
|
2010-02-25 06:06:17 -07:00
|
|
|
};
|
2013-04-16 17:25:45 -06:00
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
zpt20 = spdx { # FIXME: why zpt* instead of zpl*
|
|
|
|
shortName = "ZPL-2.0";
|
2013-04-16 17:25:45 -06:00
|
|
|
fullName = "Zope Public License 2.0";
|
|
|
|
};
|
|
|
|
|
2014-07-30 10:04:57 -06:00
|
|
|
zpt21 = spdx {
|
|
|
|
shortName = "ZPL-2.1";
|
2013-04-16 17:25:45 -06:00
|
|
|
fullName = "Zope Public License 2.1";
|
|
|
|
};
|
2014-03-24 18:58:11 -06:00
|
|
|
|
2014-08-12 11:05:54 -06:00
|
|
|
}
|