-
Notifications
You must be signed in to change notification settings - Fork 3
/
toxcore-c.cabal
80 lines (74 loc) · 1.86 KB
/
toxcore-c.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
name: toxcore-c
synopsis: Haskell bindings to the C reference implementation of Tox
version: 0.2.12
cabal-version: >=1.10
license: GPL-3
license-file: LICENSE
build-type: Simple
author: iphy
maintainer: iphy
copyright: Copyright (c) 2016-2020 The TokTok Team
homepage: https://toktok.github.io
category: Network
description:
Haskell bindings to the C reference implementation of Tox.
.
See <https://github.com/TokTok/c-toxcore>.
source-repository head
type: git
location: https://github.com/TokTok/hs-toxcore-c
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
extra-libraries: toxcore
exposed-modules:
FFI.Tox.Tox
Foreign.C.Enum
Network.Tox.C
Network.Tox.C.Constants
Network.Tox.C.Options
Network.Tox.C.Tox
Network.Tox.C.Type
Network.Tox.C.Version
Network.Tox.Types.Events
build-depends:
base <5
, bytestring
, generic-arbitrary <2
, msgpack-binary >=0.0.16
, QuickCheck
, quickcheck-instances
executable groupbot
default-language: Haskell2010
hs-source-dirs: tools
ghc-options: -Wall -Wno-unused-imports
extra-libraries: toxcore
main-is: groupbot.hs
build-depends:
base <5
, base16-bytestring >=1
, bytestring
, directory
, text
, toxcore-c
test-suite testsuite
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
ghc-options: -Wall -Wno-unused-imports
main-is: testsuite.hs
other-modules:
Network.Tox.C.ToxSpec
Network.Tox.Types.EventsSpec
build-depends:
base <5
, base16-bytestring
, bytestring
, cryptohash
, hspec
, msgpack-binary
, QuickCheck >=2.9.1
, saltine
, toxcore-c
, vector