aboutsummaryrefslogtreecommitdiff
path: root/docs/integrating_distro_modules_with_luarocks.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/integrating_distro_modules_with_luarocks.md')
-rw-r--r--docs/integrating_distro_modules_with_luarocks.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/integrating_distro_modules_with_luarocks.md b/docs/integrating_distro_modules_with_luarocks.md
index fb073500..b6c054ab 100644
--- a/docs/integrating_distro_modules_with_luarocks.md
+++ b/docs/integrating_distro_modules_with_luarocks.md
@@ -151,14 +151,14 @@ Continuing the examples above:
151* /usr/lib/luarocks/rocks-5.3/lua-cjson/2.1.0-0/lua-cjson-2.1.0-0.rockspec 151* /usr/lib/luarocks/rocks-5.3/lua-cjson/2.1.0-0/lua-cjson-2.1.0-0.rockspec
152 152
153For simplicity, I would recommend just copying over the appropriate rockspec 153For simplicity, I would recommend just copying over the appropriate rockspec
154file from [luarocks.org](http://luarocks.org) and bundling them in the package 154file from [luarocks.org](https://luarocks.org) and bundling them in the package
155metadata. For completeness, this is how the one for LPeg 1.0 looks like: 155metadata. For completeness, this is how the one for LPeg 1.0 looks like:
156 156
157``` 157```
158package = "LPeg" 158package = "LPeg"
159version = "1.0.0-1" 159version = "1.0.0-1"
160source = { 160source = {
161 url = "http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.0.tar.gz", 161 url = "https://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.0.tar.gz",
162 md5 = "0aec64ccd13996202ad0c099e2877ece", 162 md5 = "0aec64ccd13996202ad0c099e2877ece",
163} 163}
164description = { 164description = {
@@ -171,7 +171,7 @@ description = {
171 we expect from a pattern-matching library (and more, as we can 171 we expect from a pattern-matching library (and more, as we can
172 define entire grammars). 172 define entire grammars).
173 ]], 173 ]],
174 homepage = "http://www.inf.puc-rio.br/~roberto/lpeg.html", 174 homepage = "https://www.inf.puc-rio.br/~roberto/lpeg/lpeg.html",
175 maintainer = "Gary V. Vaughan <gary@vaughan.pe>", 175 maintainer = "Gary V. Vaughan <gary@vaughan.pe>",
176 license = "MIT/X11" 176 license = "MIT/X11"
177} 177}