-
Notifications
You must be signed in to change notification settings - Fork 42
/
hint.cabal
125 lines (108 loc) · 3.5 KB
/
hint.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
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
115
116
117
118
119
120
121
122
123
124
125
name: hint
version: 0.9.0.8
description:
This library defines an Interpreter monad. It allows to load Haskell
modules, browse them, type-check and evaluate strings with Haskell
expressions and even coerce them into values. The library is thread-safe
and type-safe (even the coercion of expressions to values).
It is, essentially, a huge subset of the GHC API wrapped in a simpler
API.
synopsis: A Haskell interpreter built on top of the GHC API
category: Language, Compilers/Interpreters
license: BSD3
license-file: LICENSE
author: The Hint Authors
maintainer: "Samuel Gélineau" <gelisam@gmail.com>
homepage: https://github.com/haskell-hint/hint
tested-with: ghc == 8.10.7
, ghc == 8.6.5
, ghc == 8.8.4
, ghc == 9.0.2
, ghc == 9.2.7
, ghc == 9.4.5
, ghc == 9.6.1
, ghc == 9.8.1
, ghc == 9.10.1
cabal-version: >= 1.10
build-type: Simple
extra-source-files: README.md
AUTHORS
CHANGELOG.md
examples/example.hs
examples/SomeModule.hs
source-repository head
type: git
location: https://github.com/haskell-hint/hint
test-suite unit-tests
type: exitcode-stdio-1.0
hs-source-dirs: unit-tests
main-is: run-unit-tests.hs
default-language: Haskell2010
build-depends: base == 4.*,
bytestring,
hint,
HUnit,
directory,
filepath,
exceptions >= 0.10.0,
stm,
text,
typed-process,
-- packages used by setImports calls
containers
if impl(ghc >= 8.10) {
cpp-options: -DTHREAD_SAFE_LINKER
}
if !os(windows) {
build-depends: unix >= 2.2.0.0
}
default-extensions: CPP
library
default-language: Haskell2010
build-depends: base == 4.*,
containers,
ghc >= 8.4 && < 9.11,
ghc-paths,
ghc-boot,
transformers,
filepath,
exceptions == 0.10.*,
random,
directory,
temporary
if impl(ghc >= 8.10) {
cpp-options: -DTHREAD_SAFE_LINKER
}
if !os(windows) {
build-depends: unix >= 2.2.0.0
}
exposed-modules: Language.Haskell.Interpreter
Language.Haskell.Interpreter.Extension
Language.Haskell.Interpreter.Unsafe
Hint.Internal
other-modules: Hint.GHC
Hint.Base
Hint.InterpreterT
Hint.CompatPlatform
Hint.Configuration
Hint.Extension
Hint.Context
Hint.Conversions
Hint.Eval
Hint.Parsers
Hint.Reflection
Hint.Typecheck
Hint.Util
Hint.Annotations
Control.Monad.Ghc
hs-source-dirs: src
ghc-options: -Wall
default-extensions: CPP
GeneralizedNewtypeDeriving
DeriveDataTypeable
MagicHash
FunctionalDependencies
Rank2Types
ScopedTypeVariables
ExistentialQuantification
LambdaCase