package = "chroma"
version = "0.1.2-1"
source = {
   url = "git://github.com/ldrumm/lua-chroma.git",
   tag = "v0.1.2"
}
description = {
   summary = "Simple ANSI colors for Lua",
   detailed = [[
      Simple colour printing for the console with Lua.
   ]],
   homepage = "https://github.com/ldrumm/lua-chroma",
   license = "MIT/X11" -- or whatever you like
}
dependencies = {
   "lua >= 5.1"
}
build ={
    type = "builtin",
    modules = {
        chroma = "chroma.lua",
      }
    }
