-
Notifications
You must be signed in to change notification settings - Fork 17
/
plugins.cabal
75 lines (67 loc) · 2.57 KB
/
plugins.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
name: plugins
version: 1.6.2
homepage: https://github.com/stepcut/plugins
synopsis: Dynamic linking for Haskell and C objects
description: Dynamic linking and runtime evaluation of Haskell,
and C, including dependency chasing and package resolution.
.
Described in the papers:
* /Plugging Haskell In/
* /Dynamic Applications from the Ground Up/
* /Dynamic Extension of Typed Functional Languages/.
category: System
license: BSD3
License-file: LICENSE
author: Don Stewart 2004..2010
maintainer: Jeremy Shaw <[email protected]>
cabal-version: >= 1.10
build-type: Configure
Tested-with: GHC == 7.4.2
, GHC == 7.6.3
, GHC == 7.8.4
, GHC == 7.10.3
, GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.6.5
, GHC == 8.8.3
, GHC == 8.10.1
extra-source-files: config.guess, config.h.in, config.mk.in, config.sub,
configure, configure.ac, install.sh, Makefile,
testsuite/makewith/io/TestIO.conf.in,
testsuite/makewith/unsafeio/Unsafe.conf.in
library
default-language: Haskell2010
exposed-modules:
System.Eval,
System.Eval.Haskell,
System.Eval.Utils,
System.Plugins,
System.Plugins.Consts,
System.Plugins.Env,
System.Plugins.Load,
System.Plugins.LoadTypes,
System.Plugins.Make,
System.Plugins.Parser,
System.Plugins.Process,
System.Plugins.Utils
default-extensions: CPP,
ForeignFunctionInterface
ghc-options: -Wall -funbox-strict-fields -fno-warn-missing-signatures
hs-source-dirs: src
build-depends: base >= 4 && < 5,
Cabal >= 1.6,
haskell-src,
containers,
array,
directory,
filepath,
random,
process,
split,
ghc >= 6.10,
ghc-prim
if impl(ghc >= 7.2)
build-depends: ghc-paths
source-repository head
type: git
location: https://github.com/stepcut/plugins