-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-loader.cabal
47 lines (42 loc) · 1.73 KB
/
package-loader.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
name: package-loader
version: 1.5.4.0
homepage: https://github.com/tweag/package-loader
synopsis: Dynamic linking of Haskell packages
description: Dynamic linking of Haskell packages
including dependency chasing and package resolution.
.
This package has been split from the plugins package to
remove the package dependencies that are not necessary
for the task.
category: System
license: BSD3
License-file: LICENSE
maintainer: Facundo Domínguez <[email protected]>
cabal-version: >= 1.8
build-type: Configure
Tested-with: GHC >= 6.12.1
extra-source-files: config.guess, config.h.in, config.mk.in, config.sub,
configure, configure.ac, install.sh
library
exposed-modules:
System.Loader.Package,
System.Loader.Package.Constants,
System.Loader.Package.Env,
System.Loader.Package.ZEncoding
extensions: CPP,
ForeignFunctionInterface
ghc-options: -Wall -funbox-strict-fields -fno-warn-missing-signatures
include-dirs: .
hs-source-dirs: src
build-depends: base >= 4 && < 5,
Cabal >= 1.6,
containers,
directory
test-suite test-loadPackageFunction
main-is: test-loadPackageFunction.hs
type: exitcode-stdio-1.0
build-depends: package-loader
, base >= 4.6 && < 5
ghc-options: -Wall
hs-source-dirs: tests
extensions: ImpredicativeTypes