Here is a summary (extracted from Wikipedia) of the most popular software open source license.
License | Latest ver | Linking | Distribution | Modification | Patent grant | Private use | Sublicensing | TM grant |
Apache License | 2.0 | Permissive | Permissive | Permissive | Yes | Yes | Permissive | No |
BSD License | 3.0 | Permissive | Permissive | Permissive[ | Manually | Yes | Permissive | Manually |
Creative Commons Zero | 1.0 | Public Domain | Public Domain | Public Domain | No | Public Domain | Public Domain | No |
CC BY | 4.0 | Permissive | Permissive | Permissive | No | Yes | Permissive | No |
FreeBSD | — | Permissive | Permissive | Permissive | Manually | Permissive | Permissive | Manually |
MIT license / X11 license | — | Permissive | Permissive | Permissive | Manually | Yes | Permissive | Manually |
XFree86 1.1 License | ? | Permissive | ? | Permissive | ? | ? | ? | ? |
Mozilla Public License | 2.0 | Permissive | Copylefted | Copylefted | Yes | Yes | Copylefted | No |
Open Software License[11] | 3.0 | Permissive | Copylefted | Copylefted | Yes | Yes | Copylefted | ? |
Artistic License | 2.0 | With restrictions | With restrictions | With restrictions | No | Permissive | With restrictions | No |
CC BY-SA | 4.0 | Copylefted | Copylefted | Copylefted | No | Yes | Copylefted | No |
GNU General Public License | 3.0 | GPLv3 compatible only | Copylefted | Copylefted | Yes | Yes | Copylefted | Yes |
GNU Lesser General Public License | 3.0 | With restrictions | Copylefted | Copylefted | Yes | Yes | Copylefted | Yes |
Note: WordPress editor suck. Here is the colored version of the article.
Meaning of the fields
- Linking – linking of the licensed code with code licensed under a different license (e.g. when the code is provided as a library).
- Distribution – distribution of the code to third parties. “Copyleft” means the software requires that its source code be made publicly available and that all provisions in the license be preserved in derivative works.
- Modification – modification of the code by a licensee
- Patent grant – protection of licensees from patent claims made by code contributors regarding their contribution, and protection of contributors from patent claims made by licensees
- Private use – whether modification to the code must be shared with the community or may be used privately (e.g. internal use by a corporation)
- Sublicensing – whether modified code may be licensed under a different license (for example a copyright) or must retain the same license under which it was provided
- TM grant – use of trademarks associated with the licensed code or its contributors by a licensee
Green is ok.
“Permissive” means the software has minimal restrictions on how it can be used, modified, and redistributed, usually including a warranty disclaimer.
Conclusions
As we can see the worst license is the GNU license which does not allow us to release the software as close source – we need to release our whole source code and the license under which it is release must also be GNU.
Discussions
GNU AGPLv3 and GPLv3 are the most draconic. The “A” version is related to “network”. If you use code distributed under this license you MUST provide also your source code under the same license.
GNU LGPLv3 – If you use code under this license, like DLLs, then you are not forced to expose your code.
“However, a larger work using the licensed work through interfaces provided by the licensed work may be distributed under different terms and without source code for the larger work.”
Mozilla Public License & Apache – Same as LGPL3. You can use code written under these licenses without distributing your code.
Note: You still need to document or distribute any change to the original code (not yours), if any.
More details
https://choosealicense.com/licenses/
https://en.wikipedia.org/wiki/Comparison_of_free_and_open-source_software_licenses
Disclaimer: Under no circumstances should this document be considered legal advice. Please read the whole license agreement before using it.