-
Notifications
You must be signed in to change notification settings - Fork 8
/
erlang.cabal
42 lines (41 loc) · 1.54 KB
/
erlang.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
name: erlang
version: 0.2.3
stability: alpha
description:
Speaks the Erlang network protocol and impersonates an Erlang node
on the network. Fully capable of bi-directional communication with
Erlang. Erlang types are, as far as reasonable, mapped to Haskell
types. Messages to Erlang are just function calls in Haskell, and
messages from Erlang are delivered to MVars.
license: GPL
license-file: COPYING
author: Eric Sessoms <[email protected]>
maintainer: Artúr Poór <[email protected]>
homepage: http://github.com/poor-a/erlang-ffi
category: Foreign
synopsis: FFI interface to Erlang.
cabal-version: >= 1.6
build-type: Simple
extra-source-files:
CHANGELOG.md
source-repository head
type: git
location: https://github.com/poor-a/erlang-ffi.git
library
build-depends: base >= 4 && < 5,
binary >= 0.4.4,
bytestring,
directory,
filepath,
MissingH,
network >= 2.2.0.1,
random >= 1.0.0.1
exposed-modules: Foreign.Erlang
other-modules: Foreign.Erlang.Network,
Foreign.Erlang.OTP,
Foreign.Erlang.OTP.GenServer,
Foreign.Erlang.OTP.Mnesia,
Foreign.Erlang.Processes,
Foreign.Erlang.Types,
Foreign.Erlang.Utilities
hs-source-dirs: src