diff options
| author | 2016-03-05 11:03:34 +0100 | |
|---|---|---|
| committer | 2016-03-05 11:18:08 +0100 | |
| commit | fafeeb095a49a688ce42cc12b4923945bad44ddd (patch) | |
| tree | 4f5a3982c22214b02415f502a1fbbe97c1f65c98 /plugins | |
| parent | 80b569fb2b499fd0026e4e571bd99bd1c67ff370 (diff) | |
put license for plugins (nw)
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/README.md | 3 | ||||
| -rw-r--r-- | plugins/boot.lua | 2 | ||||
| -rw-r--r-- | plugins/dummy/init.lua | 4 | ||||
| -rw-r--r-- | plugins/json/init.lua | 3 |
4 files changed, 11 insertions, 1 deletions
diff --git a/plugins/README.md b/plugins/README.md new file mode 100644 index 00000000000..bb222b77f68 --- /dev/null +++ b/plugins/README.md @@ -0,0 +1,3 @@ +# **Plugins** # + +LUA plugins contains code from various sources so license is per file.
\ No newline at end of file diff --git a/plugins/boot.lua b/plugins/boot.lua index 77b28713c12..03b82c1dbba 100644 --- a/plugins/boot.lua +++ b/plugins/boot.lua @@ -1,3 +1,5 @@ +-- license:BSD-3-Clause +-- copyright-holders:Miodrag Milanovic require('lfs') local cwd = lfs.currentdir() package.path = cwd .. "/plugins/?.lua;" .. cwd .. "/plugins/?/init.lua" diff --git a/plugins/dummy/init.lua b/plugins/dummy/init.lua index 8c4fbe6a0f5..3ef8fe3fc0b 100644 --- a/plugins/dummy/init.lua +++ b/plugins/dummy/init.lua @@ -1,8 +1,10 @@ +-- license:BSD-3-Clause +-- copyright-holders:Miodrag Milanovic local exports = {} exports.name = "dummy" exports.version = "0.0.1" exports.description = "A dummy example" -exports.license = "MIT" +exports.license = "The BSD 3-Clause License" exports.author = { name = "Miodrag Milanovic" } local dummy = exports diff --git a/plugins/json/init.lua b/plugins/json/init.lua index d49352cc6ff..39f211c8e11 100644 --- a/plugins/json/init.lua +++ b/plugins/json/init.lua @@ -1,3 +1,6 @@ +-- license:MIT +-- copyright-holders:David Kolf + local exports = {} exports.name = "luvit/json" exports.version = "2.5.0" |
