File: hslua.cabal

package info (click to toggle)
haskell-hslua 2.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 144 kB
  • sloc: haskell: 288; makefile: 6
file content (114 lines) | stat: -rw-r--r-- 4,877 bytes parent folder | download | duplicates (2)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
cabal-version:       2.2
name:                hslua
version:             2.3.1
synopsis:            Bindings to Lua, an embeddable scripting language
description:         HsLua provides wrappers and helpers
                     to bridge Haskell and <https://www.lua.org/ Lua>.
                     .
                     It builds upon the /lua/ package, which allows to bundle
                     a Lua interpreter with a Haskell program.
                     .
                     Example programs are can be found in the @hslua-examples@
                     subdir of the project
                     <https://github.com/hslua/hslua repository>.
homepage:            https://hslua.org/
bug-reports:         https://github.com/hslua/hslua/issues
license:             MIT
license-file:        LICENSE
author:              Albert Krewinkel, Gracjan Polak, Ömer Sinan Ağacan
maintainer:          tarleb@hslua.org
copyright:           © 2007–2012 Gracjan Polak;
                     © 2012–2016 Ömer Sinan Ağacan;
                     © 2017-2024 Albert Krewinkel
category:            Foreign
build-type:          Simple
extra-source-files:  README.md
                   , CHANGELOG.md
                   , test/lua/*.lua
tested-with:         GHC == 8.4.4
                   , GHC == 8.6.5
                   , GHC == 8.8.4
                   , GHC == 8.10.7
                   , GHC == 9.0.2
                   , GHC == 9.2.8
                   , GHC == 9.4.8
                   , GHC == 9.6.3
                   , GHC == 9.8.1

source-repository head
  type:                git
  location:            https://github.com/hslua/hslua.git

common common-options
  default-language:    Haskell2010
  build-depends:       base                    >= 4.11  && < 5
                     , bytestring              >= 0.10.2 && < 0.13
                     , containers              >= 0.5.9  && < 0.8
                     , exceptions              >= 0.8    && < 0.11
                     , hslua-aeson             >= 2.3.1  && < 2.4
                     , hslua-core              >= 2.3.2  && < 2.4
                     , hslua-classes           >= 2.2.1  && < 2.4
                     , hslua-marshalling       >= 2.3.1  && < 2.4
                     , hslua-objectorientation >= 2.3.1  && < 2.4
                     , hslua-packaging         >= 2.3.1  && < 2.4
                     , hslua-typing            >= 0.1.1  && < 0.2
                     , mtl                     >= 2.2    && < 2.4
                     , text                    >= 1.2    && < 2.2
  ghc-options:         -Wall
                       -Wincomplete-record-updates
                       -Wnoncanonical-monad-instances
                       -Wredundant-constraints
  if impl(ghc >= 8.2)
    ghc-options:         -Wcpp-undef
                         -Werror=missing-home-modules
  if impl(ghc >= 8.4)
    ghc-options:         -Widentities
                         -Wincomplete-uni-patterns
                         -Wpartial-fields
                         -fhide-source-paths

library
  import:              common-options
  exposed-modules:     HsLua
                     , HsLua.Util
  reexported-modules:  HsLua.Aeson
                     , HsLua.Core
                     , HsLua.Core.Error
                     , HsLua.Core.Types
                     , HsLua.Core.Utf8
                     , HsLua.Class.Exposable
                     , HsLua.Class.Invokable
                     , HsLua.Class.Peekable
                     , HsLua.Class.Pushable
                     , HsLua.Class.Util
                     , HsLua.Marshalling
                     , HsLua.ObjectOrientation
                     , HsLua.Packaging
                     , HsLua.Packaging.Function
                     , HsLua.Packaging.Module
                     , HsLua.Packaging.Rendering
                     , HsLua.Typing
  hs-source-dirs:      src

test-suite test-hslua
  import:              common-options
  type:                exitcode-stdio-1.0
  main-is:             test-hslua.hs
  hs-source-dirs:      test
  ghc-options:         -threaded -Wno-unused-do-bind
  other-modules:       HsLuaTests
                     , HsLua.UtilTests
  build-depends:       hslua
                     -- The lua package is needed only to check for it's
                     -- version so we know whether to expect behavior of
                     -- Lua 5.3 or Lua 5.4.
                     , lua                  >= 2.0
                     , lua-arbitrary        >= 1.0
                     , QuickCheck           >= 2.7
                     , quickcheck-instances >= 0.3
                     , tasty-hslua
                     , tasty                >= 0.11
                     , tasty-hunit          >= 0.9
  other-extensions:    LambdaCase
                     , OverloadedStrings
                     , TypeApplications