luautils-0.1.4: luautils.cabal
Name: luautils
Version: 0.1.4
Synopsis: Helpers for Haskell integration with Lua
Description: This package is an add-on to the @HsLua@ package by Gracjan Polak.
HsLua only provides a very bare-bones wrapper over the Lua API, and this
package is meant to fill in the gap by providing some commonly used features.
License: MIT
License-file: LICENSE
Author: Anupam Jain
Maintainer: ajnsit@gmail.com
Build-type: Simple
Cabal-version: >=1.8
stability: Experimental
Category: Scripting
Extra-source-files: README.md
source-repository head
type: git
location: http://github.com/ajnsit/luautils
source-repository this
type: git
location: http://github.com/ajnsit/luautils/tree/v0.1.4
tag: v0.1.4
Library
hs-source-dirs: src
Build-Depends: base >= 3 && < 5
, hslua >= 0.4 && < 0.5
, monad-loops
, containers
, text
, bytestring
, binary
exposed-modules: Scripting.LuaUtils
, Scripting.LuaUtils.Internal.Util
test-suite simple
type: exitcode-stdio-1.0
main-is: simple.hs
build-depends: base
, hslua
, luautils
, QuickCheck >= 2.7
, test-framework
, test-framework-th
, test-framework-quickcheck2
, quickcheck-instances
, containers
, text
, binary
, text-binary
hs-source-dirs: tests
ghc-options: -w -threaded -rtsopts -with-rtsopts=-N -O0 -Wall