vote up 1 vote down star

Hello! I am very confused as to which open source license I should use for my project.

I am going to tell you what permissions I want my project to have, and someone please let me know which license would be best for me. Here are my desired permissions and specifications:

  • Can be used commercially: Yes
  • Can be used for closed source projects: Yes
  • Can be redistributed for a "price" by someone else: No
  • Is free in price: Yes
  • Changes to source required to be public: Yes

What license would be best for this?

flag

76% accept rate
2  
I'm not sure allowing commercial use that can't charge for redistribution, or allowing closed source while requiring changes to be public even makes sense. – Wooble Sep 15 at 2:46
Well basically, my project is a helper utility. It really isn't code that you implement into another project. It is just a helper program to generate files. – QAH Sep 15 at 2:49
1  
As Wooble said, allowing for commercial use, but not allowing people to sell your software seems contradictory. – Swingley Sep 15 at 2:50

5 Answers

vote up 0 vote down check

Is this a tool or component? If what you are making is a tool, like a compiler or a unit test harness, then GPL would work.

If it is a component or a whole app (whose purpose is to use the app and incorporate changes into it, like a customizable blog or a calendar component), then LGPL is better.

link|flag
vote up 5 vote down

LGPL will let the binary of your project to be used with closed source projects, but require changes to your program's source to be made public.

link|flag
Does it restrict my project's binary and code being sold by someone else? – QAH Sep 15 at 2:50
@QAH It's not really possible to allow people to use it in a product they sell if they aren't allow to sell it. LGPL get's you pretty close though. – arbales Sep 15 at 2:56
LGPL permits unmodified versions of your binaries to be distributed/sold with closed source commercial apps. As far as I understand, if they modify your program's source code, then they must release the modified version of your program's code (but their own program can still remain closed source). – Imran Sep 15 at 2:57
GPL and LGPL allow such licensed code to be sold for money, and there are companies who do this, e.g. Red Hat. – Bill Karwin Sep 15 at 3:17
vote up 1 vote down

Your "no redistribution for a price" clause is going to be very difficult to satisfy; I'm not entirely certain what it means, given that you want to allow commercial use, and restricting others from redistributing for a price goes against the first clause of the OSI's Open Source Definition, so by that definition, no open source license could meet your criteria.

If you do want to try to find a license that meets your exact criteria, then GNU has a pretty comprehensive list of licenses and their individual quirks. However, I'd recommend instead taking one of the major licenses (Apache, GPL, or LGPL) that matches your general philosophy and going with it, even if it doesn't match your exact criteria. By doing so, you'll get a stronger and more widely understood license for your project, and you'll be doing your bit against license proliferation. See here for a good discussion of these major licenses' general philosophies and why license proliferation can be a bad thing.

link|flag
vote up 0 vote down

GNU Lesser General Public License is right for you.

link|flag
vote up 0 vote down

I do not know of any existing license that draws the incredibly subtle distiction between "can be used commercially: yes" and "can be resold for a price: no" -- most non-lawyers would perceive "sold for a price" and "used commercially" to be very VERY close indeed!-) [[I have no ideas how lawyers would spin the subtle thread -- depends on how much you're paying them for this purpose, I guess;-)]]

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.