MITライセンスで提供されているライブラリやソースコードは、商用、非商用を問わず無条件に使用が認められている。ソースコードの公開は不要であり、改変も可能だ。
但し、「ライブラリの著作権表示と許諾表示を重要な部分に記載することが必要条件」である。
iOSアプリの場合、ソースコードの冒頭部分にコメントとして表記し、アプリのインフォメーション画面上に表示するのが望ましい。
その場合、CopyrightとしてMITライセンスの提供者を表記する。
<利用するソフトウェア名>
The MIT License
Copyright (c) <year> <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.
<利用するソフトウェア名>:MITライセンスで提供されているライブラリ、ソースコード名称
<year>:MITライセンスで提供されているライブラリ、ソースコードの著作権が発生した年
<copyright holders>:MITライセンスで提供されているライブラリ、ソースコードの著作権保持者
参考記事:
http://opensource.org/licenses/MIT
http://tobysoft.net/wiki/index.php?License/MIT%20License
【ライブラリの最新記事】