summaryrefslogtreecommitdiff
path: root/panto-herdr-scm-1.rockspec
blob: d974b6913fecf9e4b0b1214dba47b0a4f503d99f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
rockspec_format = "3.0"
package = "panto-herdr"
version = "scm-1"

source = {
   -- Replace when the repository has a public remote.
   url = "git+https://example.invalid/panto-herdr.git",
}

description = {
   summary = "Herdr lifecycle reporting for panto",
   detailed = [[
A panto extension that reports panto lifecycle state to Herdr when it runs
inside a Herdr pane.
]],
   license = "MIT",
}

dependencies = {
   "lua >= 5.1",
}

build = {
   type = "builtin",
   modules = {
      ["panto-herdr"] = "panto-herdr/init.lua",
   },
}