-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrts-loader.cabal
62 lines (55 loc) · 2.1 KB
/
rts-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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: rts-loader
version: 0.1.0.0
synopsis: Dynamically load Haskell libraries
description:
Load and execute functions from Haskell dynamic libraries without being
restricted to a single RTS/GHC version.
.
See README.md below for more information.
homepage: https://github.com/DanielG/rts-loader
license: GPL-3
license-file: LICENSE
license-files: LICENSE LICENSE.GHC
author: Daneil Gröber
maintainer: [email protected]
copyright: Copyright (C) 2016 Daniel Gröber
category: Distribution
cabal-version: >= 1.24.0.0
build-type: Custom
extra-source-files: ChangeLog, README.md
tested-with: GHC == 7.10.3, GHC == 8.0.1
extra-source-files: log.h
library
exposed-modules: System.Loader.RTS
other-modules: Paths_rts_loader,
GHC.Way
default-language: Haskell2010
build-depends: base < 4.10 && >= 4.8.0.0,
zenc == 0.1.1,
unix < 2.8 && >= 2.7.1.0,
filepath < 1.5 && >= 1.4.0.0,
directory < 1.3 && >= 1.2.2.0,
Cabal < 1.25 && >= 1.24.0.0
executable rts-loader
main-is: rts-loader.c
x-install-dir: $libexecdir
-- PR pending: https://github.com/haskell/cabal/pull/3461
-- install-dir: $libexecdir
default-language:
-- Not really, it's C actually. See Setup.hs
Haskell98
executable rts-loader-example
main-is: Example.hs
default-language: Haskell2010
hs-source-dirs: src
build-depends: base < 4.10 && >= 4.8.0.0,
Cabal < 1.25 && >= 1.24.0.0,
process < 1.5 && >= 1.2.3.0,
rts-loader
custom-setup
setup-depends: base < 4.10 && >= 4.8.0.0,
filepath < 1.5 && >= 1.4.0.0,
Cabal < 1.25 && >= 1.24.0.0
source-repository head
type: git
location: https://github.com/DanielG/rts-loader.git