This repository has been archived by the owner on Dec 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapview.cabal
69 lines (65 loc) · 2.13 KB
/
mapview.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
name: mapview
version: 3
synopsis: View coordinates received via telemetry on a map in realtime.
homepage: https://github.com/noexc/mapview
license: MIT
license-file: LICENSE
author: Ricky Elrod
maintainer: ricky@elrod.me
copyright: (c) 2016 Ricky Elrod <ricky@elrod.me>
category: KD8ZRC
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: KD8ZRC.Mapview.Execute
, KD8ZRC.Mapview.Types
, KD8ZRC.Mapview.Utility.Concurrent
, KD8ZRC.Mapview.Utility.Coordinates
, KD8ZRC.Mapview.Utility.CRC
, KD8ZRC.Mapview.Utility.Downlink
, KD8ZRC.Mapview.Utility.Logging
build-depends:
ansi-terminal >= 0.5 && < 0.7
, ansi-wl-pprint >= 0.6 && < 0.7
, base > 4 && < 5
, bytestring >= 0.10
, configurator >= 0.3
, coordinate >= 0.0.15 && < 0.1
, crc16 >= 0.1 && < 0.2
, fsnotify >= 0.2 && < 0.3
, lens >= 4.4 && < 5
, linear >= 1.10 && < 2
, old-locale >= 1.0
, optparse-applicative >= 0.9
, shelly >= 1.5
, text >= 1.1
, time >= 1 && < 2
, thyme >= 0.3.5 && < 0.4
, transformers >= 0.3 && < 0.6
, trifecta >= 1.6 && < 2
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -Werror -fwarn-incomplete-uni-patterns
test-suite hlint
hs-source-dirs: tests
main-is: hlint.hs
type: exitcode-stdio-1.0
ghc-options: -Wall -rtsopts -with-rtsopts=-N -threaded
default-language: Haskell2010
build-depends:
base
, hlint >= 1.8
test-suite tasty
hs-source-dirs: tests
type: exitcode-stdio-1.0
main-is: test.hs
c-sources: cbits/crc16.c
ghc-options: -Wall -Werror -threaded -O2
build-depends:
base >= 4 && < 5
, bytestring >= 0.10 && < 0.11
, crc16 >= 0.1 && < 0.2
, tasty >= 0.7
, tasty-quickcheck >= 0.8
, QuickCheck >= 2.7 && < 3
default-language: Haskell2010