-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
hackbus.cabal
57 lines (55 loc) · 1.85 KB
/
hackbus.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
name: hackbus
version: 0.0.21
synopsis: Modbus library
description: Libmodbus bindings for Haskell.
category: Hardware
license: LGPL-3
license-file: LICENSE
author: Joel Lehtonen
maintainer: [email protected]
build-type: Simple
cabal-version: >= 1.8
source-repository head
type: git
location: git://github.com/zouppen/hackbus
library
hs-source-dirs: src
exposed-modules: System.Hardware.Modbus
, Control.Hackbus.AlarmSystem
, Control.Hackbus.Exceptions
, Control.Hackbus.JsonCommands
, Control.Hackbus.Logging
, Control.Hackbus.Modules.HfEasy
, Control.Hackbus.Persistence
, Control.Hackbus.PeekPoke
, Control.Hackbus.UnixJsonInterface
, Control.Hackbus.UnixSocket
, Control.Hackbus.Math.DewPoint
, Control.Hackbus.Math.Sauna
, Media.Streaming.Vlc
, System.Hardware.Modbus.Abstractions
, System.Hardware.Modbus.LowLevel
, System.Hardware.Modbus.Types
cc-options: -std=gnu99
pkgconfig-depends: libmodbus
build-depends:
aeson >= 1.1,
base >= 4 && < 5,
bytestring >= 0.10,
curl >= 1.3.7,
curl-aeson >= 0.0.4,
directory >= 1.3,
monad-loops >= 0.4.3,
network >= 2.6,
process >= 1.4.3,
stm >= 2 && < 3,
text >= 1.2,
unix >= 2.7,
unordered-containers >= 0.2.9.0
executable taidacent-power-read
hs-source-dirs: examples
main-is: TaidacentPower.hs
build-depends:
base >= 4 && < 5,
monad-loops >= 0.4.3,
hackbus