This repository has been archived by the owner on Mar 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhslua-module-system.cabal
71 lines (67 loc) · 2.79 KB
/
hslua-module-system.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
62
63
64
65
66
67
68
69
70
71
name: hslua-module-system
version: 0.2.2.1
synopsis: Lua module wrapper around Haskell's System module.
description: Provides access to system information and functionality
to Lua scripts via Haskell's `System` module.
.
Intended usage for this package is to preload it by adding
the loader function to `package.preload`. Note that the
Lua `package` library must have already been loaded before
the loader can be added.
homepage: https://github.com/hslua/hslua-module-system
license: MIT
license-file: LICENSE
author: Albert Krewinkel
maintainer: [email protected]
copyright: © 2019-2020 Albert Krewinkel <[email protected]>
category: Foreign
build-type: Simple
extra-source-files: CHANGELOG.md
, test/test-system.lua
cabal-version: >=1.10
tested-with: GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.3
, GHC == 8.10.1
source-repository head
type: git
location: https://github.com/hslua/hslua-module-system.git
library
build-depends: base >= 4.9 && < 5
, containers >= 0.5 && < 0.7
, directory >= 1.3 && < 1.4
, exceptions >= 0.8 && < 0.11
, hslua >= 1.0.3 && < 1.4
, temporary >= 1.2 && < 1.4
default-extensions: LambdaCase
default-language: Haskell2010
exposed-modules: Foreign.Lua.Module.System
other-modules: Foreign.Lua.Module.SystemUtils
hs-source-dirs: src
other-extensions: OverloadedStrings
test-suite test-hslua-module-system
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: test-hslua-module-system.hs
hs-source-dirs: test
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
build-depends: base
, hslua
, hslua-module-system
, tasty
, tasty-hunit
, tasty-lua >= 0.2 && < 0.3
, text