-
Notifications
You must be signed in to change notification settings - Fork 5
/
sudbury.cabal
137 lines (132 loc) · 3.73 KB
/
sudbury.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
name: sudbury
version: 0.1.0.0
synopsis: Implementation of the wayland protocol
description:
The @libwayland@ library is a C implementation of the wayland protocol.
This library intends to prove that the wayland protocol can also be implemented in Haskell,
and the long-term goal is to provide an elegant interface to the wayland protocol
that is ABI-compatible with the C library.
license: MIT
license-file: LICENSE
author: Auke Booij
maintainer: auke@tulcod.com
copyright: Auke Booij, 2015-2017
category: Graphics
build-type: Simple
extra-source-files: README.md, cbits/wayland-msg-handling.h
cabal-version: >=2.0
source-repository head
type: git
location: git://github.com/abooij/sudbury.git
library
exposed-modules:
Graphics.Sudbury.Protocol.XML
, Graphics.Sudbury.Protocol.XML.Types
, Graphics.Sudbury.Protocol.Knot
, Graphics.Sudbury.Protocol.Knot.Types
, Graphics.Sudbury.Protocol.Runtime
, Graphics.Sudbury.Protocol.Runtime.Types
, Graphics.Sudbury.Socket
, Graphics.Sudbury.Socket.Wayland
, Graphics.Sudbury.WirePackages
, Graphics.Sudbury.WireMessages
, Graphics.Sudbury.Argument
, Graphics.Sudbury.Internal
, Graphics.Sudbury.Object
, Graphics.Sudbury.State
, Graphics.Sudbury.Message
, Graphics.Sudbury.Lifetime
-- other-modules:
-- other-extensions:
build-depends:
base ==4.*
, xml >=1.3 && <1.4
, process >= 1.2 && <1.5
, unix >=2.5 && <2.8
, filepath >=1.2 && <1.5
, network >=2.5 && <2.7
, bytestring >=0.9 && <1
, attoparsec >=0.13 && <1
, attoparsec-binary >=0.2 && <1
, cpu >=0.1 && <1
, singletons >=2 && <3
, template-haskell >=2.11 && <3
, containers >=0.5 && <1
, mtl >=2.2 && <3
, libffi <0.2
, stm >=2.4 && <2.6
, exceptions >=0.7 && <0.9
, data-fix
hs-source-dirs: .
c-sources: cbits/wayland-msg-handling.c
include-dirs: cbits
default-language: Haskell2010
default-extensions:
GADTs
, DataKinds
, TypeFamilies
, ExistentialQuantification
ghc-options: -Wall -fwarn-incomplete-record-updates -fwarn-unused-do-bind
foreign-library wayland-client
lib-version-info: 3:0:3
type: native-shared
other-modules:
Graphics.Sudbury.CABI.Client
, Graphics.Sudbury.CABI.Common
, Graphics.Sudbury.CABI.Protocol
, Graphics.Sudbury.CABI.Structs
, Graphics.Sudbury.CABI.DispatchFFI
hs-source-dirs: .
build-depends:
-- Version bounds are already in the library section above
base ==4.*
, xml >=1.3 && <1.4
, process >= 1.2 && <1.5
, unix >=2.5 && <2.8
, filepath >=1.2 && <1.5
, network >=2.5 && <2.7
, bytestring >=0.9 && <1
, attoparsec >=0.13 && <1
, attoparsec-binary >=0.2 && <1
, cpu >=0.1 && <1
, singletons >=2 && <3
, template-haskell >=2.11 && <3
, containers >=0.5 && <1
, mtl >=2.2 && <3
, libffi <0.2
, stm >=2.4 && <2.6
, sudbury
default-extensions:
GADTs
, DataKinds
, TypeFamilies
, ExistentialQuantification
c-sources:
cbits/wayland-protocol.c
, cbits/init.c
, cbits/wayland-client.c
, cbits/wayland-os.c
, cbits/wayland-util.c
include-dirs: cbits/
default-language: Haskell2010
ghc-options: -Wall -fwarn-incomplete-record-updates -fwarn-unused-do-bind
test-suite tests
hs-source-dirs: tests
main-is: Main.hs
other-modules:
Wire
, Arbitrary
, Socket
type: exitcode-stdio-1.0
build-depends:
base
, sudbury
, QuickCheck
, test-framework
, test-framework-quickcheck2
, attoparsec
, bytestring
, network
, unix
ghc-options: -Wall
default-language: Haskell2010