blob: ae045341b6be7103bfc17d8f267859482163389a (
plain)
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
|
Name: ebus
Version: 0.1
Synopsis: eBus Reader Library
Description: Library for parsing eBus datapackets
License: BSD3
Stability: alpha
License-file: LICENSE
Author: Yves Fischer
Category: Network
Maintainer: Yves Fischer <yvesf-haskell@xapek.org>
Build-Type: Simple
Homepage: http://www.example.com
Cabal-Version: >=1.9.2
Source-Repository head
Type: git
Location: gitolite@terrorist.at:groups/haskell-ebus
branch: master
Library
Build-Depends: base >=4 && < 5, attoparsec >= 0.10.1.1, attoparsec-enumerator >= 0.3, bytestring, enumerator >= 0.4.18
-- GHC-Options: -Wall
Exposed-modules: Network.EBus.Layer2
Test-Suite test-network-ebus
type: exitcode-stdio-1.0
main-is: Test.hs
build-depends: base, test-framework >= 0.6, test-framework-hunit >= 0.2.7, ebus,
bytestring, attoparsec >= 0.10.1.1, attoparsec-enumerator >= 0.3, enumerator >= 0.4.18
Executable ebus-dump-layer2
Main-Is: exec/ebus-dump-layer2.hs
Build-Depends: base >=4 && < 5, ebus
|