This repository has been archived by the owner on May 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
nitro.cabal
82 lines (66 loc) · 1.97 KB
/
nitro.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
name: nitro
version: 0.2.2.5
synopsis: Haskell bindings for Nitro
description: Nitro is a secure message-passing network applications library.
license: BSD3
license-file: LICENSE
author: Erin Dahlgren
maintainer: [email protected]
homepage: http://haskell.gonitro.io
category: System, FFI
build-type: Configure
stability: experimental
tested-with: GHC == 7.6.1
cabal-version: >=1.8
extra-source-files:
configure
nitro.buildinfo.in
include/nitrocfg.h.in
library
exposed-modules: System.Nitro
build-depends: base ==4.6.*,
bytestring
extensions: ForeignFunctionInterface, CPP
c-sources: dist/build/System/Nitro.chs.c
build-tools: c2hs
executable braveknight
main-is: examples/BraveKnight.hs
build-depends: base == 4.6.*,
bytestring,
nitro
extensions: ForeignFunctionInterface
executable dyingman
main-is: examples/DyingMan.hs
build-depends: base == 4.6.*,
bytestring,
nitro
extensions: ForeignFunctionInterface
executable pubsub
main-is: examples/PubSub.hs
build-depends: base == 4.6.*,
bytestring,
nitro
extensions: ForeignFunctionInterface
executable proxy
main-is: examples/Proxy.hs
build-depends: base == 4.6.*,
bytestring,
nitro
extensions: ForeignFunctionInterface
executable threaded
main-is: examples/Threaded.hs
build-depends: base == 4.6.*,
bytestring,
nitro
extensions: ForeignFunctionInterface
ghc-options: -threaded
executable distributed
main-is: examples/Distributed.hs
build-depends: base == 4.6.*,
bytestring,
nitro
extensions: ForeignFunctionInterface
ghc-options: -threaded
source-repository head
type: git
location: git://github.com/bumptech/nitro-haskell.git