aboutsummaryrefslogtreecommitdiff
path: root/spec/fixtures/with_dep-0.1-1.rockspec
blob: 53b26c9dc64340069aadce3046b2656b4b5ceeac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package = "with_dep"
version = "0.1-1"
source = {
   url = "http://localhost:8080/file/with_dep.lua"
}
description = {
   summary = "An example rockspec",
}
dependencies = {
   "lua >= 5.1",
   "with_external_dep 0.1",
}
build = {
   type = "builtin",
   modules = {
      with_dep = "with_dep.lua"
   }
}