With the minimal amount of work added the combined work can now have added restrictions. They’re pushover licenses.
Devs are free to choose whatever license they want but in the pathfinding problem of interacting with others then “protecting the source” is the wrong target node. Copyleft is a tool to help people.
Let’s use an example of the MIT license, perhaps the most permissive (license text below).
This license only applies to the source code, so it allows you to distribute executables under any terms you like. So the combined work here is not under the terms of the MIT license, but whatever terms the distributor wants.
If the combined work is distributed in source form, then any modifications you make are under the MIT license unless you make it explicit which parts are licensed differently. If users don’t like the license terms for your changes, they can remove them and be subject to only the terms of the code they keep. You cannot change the terms of existing code.
Since the MIT license doesn’t obligate users to release their modifications or combined work, it’s more attractive to businesses, and businesses frequently upstream their changes to reduce their own maintenance burden. A lot of changes are not upstreamed though.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Choice of license depends strongly on how you want others to use it. If you want it to appeal to businesses as a library (and attract fixes from their full-time devs), a permissive license is a good bet. If you want it to be a community developed thing or perhaps an application, copyleft can make a lot of sense. I’ve like all FOSS licenses and I’ve released projects under everything from the MIT license to the AGPL.
My preferred license barring any other considerations is the MPL (copyleft at the file level), but there are usually other considerations.
My only ask is that people use a standard license instead of DIYing one (or not using one). You can also change your license at any time, provided you’re the only contributor or every other contributor agrees (otherwise you’d need to selectively remove their contributions).
With the minimal amount of work added the combined work can now have added restrictions. They’re pushover licenses.
Devs are free to choose whatever license they want but in the pathfinding problem of interacting with others then “protecting the source” is the wrong target node. Copyleft is a tool to help people.
Your first paragraph is a bit misleading.
Details
Let’s use an example of the MIT license, perhaps the most permissive (license text below).
This license only applies to the source code, so it allows you to distribute executables under any terms you like. So the combined work here is not under the terms of the MIT license, but whatever terms the distributor wants.
If the combined work is distributed in source form, then any modifications you make are under the MIT license unless you make it explicit which parts are licensed differently. If users don’t like the license terms for your changes, they can remove them and be subject to only the terms of the code they keep. You cannot change the terms of existing code.
Since the MIT license doesn’t obligate users to release their modifications or combined work, it’s more attractive to businesses, and businesses frequently upstream their changes to reduce their own maintenance burden. A lot of changes are not upstreamed though.
MIT license text
Copyright © 2025 <copyright holders>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Choice of license depends strongly on how you want others to use it. If you want it to appeal to businesses as a library (and attract fixes from their full-time devs), a permissive license is a good bet. If you want it to be a community developed thing or perhaps an application, copyleft can make a lot of sense. I’ve like all FOSS licenses and I’ve released projects under everything from the MIT license to the AGPL.
My preferred license barring any other considerations is the MPL (copyleft at the file level), but there are usually other considerations.
My only ask is that people use a standard license instead of DIYing one (or not using one). You can also change your license at any time, provided you’re the only contributor or every other contributor agrees (otherwise you’d need to selectively remove their contributions).