Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NSIS terms of use [closed]

Tags:

licensing

nsis

Can anyone explain to me what does the NSIS licensing terms mean? http://nsis.sourceforge.net/License

So far it seems that the system is usable in commercial products, but the ZLIB/PNG/BZIP2/LZMA/CPL1.0 part confuses me.

Do I have to include a license page with all these licenses in setup that user has to agree with? Or are they for source code modifications only? Or only if you're compressing the data with one of the libraries?

like image 923
Coder Avatar asked Dec 22 '22 15:12

Coder


2 Answers

NSIS is a "software" application. The license information provided in the license page describes "use, distribution, modification" cases for NSIS itself. Since you are not distributing "NSIS" but an output file (installer for your application) that is produced by NSIS, you shouldn't include those licenses in your application (and installer).

like image 67
JCasso Avatar answered Dec 31 '22 14:12

JCasso


You don't need to display a nsis specific license in a normal installer (Except if your installer includes the nsis sourcecode I guess)

Everything except the bzip2 and lzma compression is ZLIB/PNG and this is a very open and nice license (This includes the content on the wiki unless stated otherwise IIRC). Unless you are distributing modified versions on nsis itself you probably don't have anything to worry about. (And of course, IANAL & TINLA)

like image 34
Anders Avatar answered Dec 31 '22 13:12

Anders