-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.dhall
52 lines (50 loc) · 1.65 KB
/
package.dhall
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
let mkHome = ./../home.dhall
in let defs = ./../defaults.dhall
in defs
⫽ ./../default-extensions.dhall
⫽ { name = "flight-scribe"
, homepage = mkHome "lang-haskell/scribe#readme"
, synopsis = "Hang gliding and paragliding competition scoring files."
, description = "Reading and writing competition scoring files."
, category = "Data"
, ghc-options =
[ "-Wall"
, "-fplugin Data.UnitsOfMeasure.Plugin"
, "-fno-warn-partial-type-signatures"
]
, dependencies =
defs.dependencies
# [ "split"
, "path"
, "aeson"
, "deepseq"
, "scientific"
, "containers"
, "unordered-containers"
, "time"
, "cassava"
, "bytestring"
, "directory"
, "filepath"
, "filemanip"
, "mtl"
, "parallel-io"
, "safe-exceptions"
, "text"
, "yaml"
, "vector"
, "uom-plugin"
, "detour-via-sci"
, "flight-clip"
, "flight-comp"
, "flight-gap-allot"
, "flight-gap-lead"
, "flight-latlng"
, "flight-route"
, "flight-units"
, "flight-zone"
]
, library =
{ source-dirs = "library", exposed-modules = "Flight.Scribe" }
, tests = ./../default-tests.dhall
}