-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwsjtx-udp.cabal
52 lines (47 loc) · 1.43 KB
/
wsjtx-udp.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
name: wsjtx-udp
synopsis: WSJT-X UDP protocol
description:
Utilities for the WSJT-X UDP protocol.
Encoding and decoding USP packages to binary and JSON and a UDP server.
version: 0.3.0.0
license: BSD3
license-file: LICENSE
author: Marc Fontaine
maintainer: [email protected]
category: ham-radio, wsjtx
homepage: https://github.com/MarcFontaine/wsjtx-udp
extra-source-files: README.md CHANGELOG.md
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: git:://github.com/MarcFontaine/wsjtx-udp.git
library
default-language : Haskell2010
ghc-options : -Wall -fno-warn-orphans
default-extensions: TemplateHaskell
build-depends: base >= 4 && < 5
build-depends: bytestring
build-depends: text
build-depends: time
build-depends: aeson
build-depends: network
build-depends: binary
build-depends: binary-parsers
hs-source-dirs: src
exposed-modules:
WSJTX.Report
WSJTX.UDP.NetworkMessage
WSJTX.UDP.EncodeQt
WSJTX.UDP.Server
executable wsjtx-dump-udp
main-is: WsjtxDumpUDP.hs
hs-source-dirs: demo
if impl(ghcjs)
buildable: False
else
build-depends:
base >= 4 && < 5
, wsjtx-udp
ghc-options: -rtsopts -Wall -O2 -threaded -with-rtsopts=-T
default-language: Haskell2010