-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.yaml
72 lines (72 loc) · 1.39 KB
/
package.yaml
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
name: kismapping
version: '0.1.0'
synopsis: WiFi Heatmap Generator
description: Please see README.md
category: Graphics
author: Faith Alderson
maintainer: [email protected]
copyright: 2020 InGuardians
license: GPL-2
homepage: https://github.com/inguardians/kismapping#readme
extra-source-files:
- README.md
- LICENSE.txt
- GPLv2.txt
dependencies:
- base
- bytestring
- mtl
- optparse-applicative
- Spock
- system-filepath
- text
- vector
ghc-options: -Wall -O2 -fexcess-precision -optc-O3 -optc-ffast-math -Odph -funfolding-use-threshold1000 -funfolding-keeness-factor1000
library:
source-dirs: library
exposed-modules:
- Data.Region
- Kismapping
- Kismapping.DataCleanup
- Kismapping.Input.KismetXML
- Kismapping.Output.File
- Kismapping.Output.WebApp
- Kismapping.Propagation
- Kismapping.Render.Image
- Kismapping.Render.Polygon
- Kismapping.Types
dependencies:
- aeson
- binary
- colour
- conduit
- conduit-combinators
- containers
- either
- exceptions
- file-embed
- hashable
- JuicyPixels
- lattices
- lens
- linear
- reflection
- repa
- statistics
- unordered-containers
- vector-algorithms
- wai
- xml-conduit
- xml-types
- stringsearch
- direct-sqlite
executables:
kismapping:
main: Main.hs
source-dirs: executable
ghc-options:
- -rtsopts
- -threaded
- -with-rtsopts=-N
dependencies:
- kismapping