This repository has been archived by the owner on Jun 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhslua-examples.cabal
61 lines (55 loc) · 2.31 KB
/
hslua-examples.cabal
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: hslua-examples
version: 1.0.0
stability: beta
cabal-version: >= 1.8
license: MIT
build-type: Simple
license-File: COPYRIGHT
copyright: © 2007–2012 Gracjan Polak
© 2012–2016 Ömer Sinan Ağacan
© 2016–2018 Albert Krewinkel
author: Gracjan Polak, Ömer Sinan Ağacan
maintainer: Albert Krewinkel <[email protected]>
synopsis: Examples of using haskell and lua together.
description: The Foreign.Lua module is a wrapper of Lua language interpreter
as described in [lua.org](http://www.lua.org/).
.
This package contains example programs, demonstrating
the possibility to work with lua from within haskell and
vice versa.
category: Foreign
extra-source-files: README.md
CHANGELOG.md
COPYRIGHT
examples/callbacks/callbacks.lua
examples/haskellfun/haskellfun.lua
examples/err_prop/err_prop.lua
source-repository head
type: git
location: https://github.com/tarleb/hslua-examples.git
executable lua-version
main-is: lua-version.hs
hs-source-dirs: examples/lua-version
build-depends: base
, hslua >= 1.0 && < 1.4
executable wishlist
main-is: wishlist.hs
hs-source-dirs: examples/wishlist
build-depends: base, bytestring, text
, hslua >= 1.0 && < 1.4
executable callbacks
main-is: callbacks.hs
hs-source-dirs: examples/callbacks
build-depends: base
, bytestring
, hslua >= 1.0 && < 1.4
executable haskellfun
main-is: haskellfun.hs
hs-source-dirs: examples/haskellfun
build-depends: base, bytestring
, hslua >= 1.0 && < 1.4
executable err_prop
main-is: err_prop.hs
hs-source-dirs: examples/err_prop
build-depends: base, bytestring
, hslua >= 1.0 && < 1.4