-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecliptic-surf.cabal
114 lines (104 loc) · 2.8 KB
/
ecliptic-surf.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
cabal-version: 2.4
name: ecliptic-surf
version: 0.1.0.0
synopsis: surf charts for planetary transits
description: See README at <https://github.com/lfborjas/ecliptic.surf>
category: Astrology
license-file: LICENSE
author: Luis Borjas Reyes
maintainer: [email protected]
bug-reports: https://github.com/lfborjas/ecliptic-surf/issues
extra-source-files:
LICENSE
README.md
source-repository head
type: git
location: https://github.com/lfborjas/ecliptic.surf
-- Inspired by:
-- https://github.com/tchoutri/pg-entity/blob/e5fc4cfe8fcaf2a5a6d76f983c9a60b25a57777a/pg-entity.cabal
common common-extensions
default-extensions:
DerivingStrategies
DerivingVia
DeriveGeneric
DataKinds
GeneralizedNewtypeDeriving
NamedFieldPuns
OverloadedStrings
TypeOperators
default-language: Haskell2010
common common-ghc-options
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
library
import: common-extensions
import: common-ghc-options
exposed-modules:
EclipticSurf
EclipticSurf.Environment
EclipticSurf.Import
EclipticSurf.Server
EclipticSurf.Types
EclipticSurf.Views
EclipticSurf.Chart
EclipticSurf.Query
EclipticSurf.Server.Pages
EclipticSurf.Views.Helpers
EclipticSurf.Views.Home
EclipticSurf.Views.SurfCharts
EclipticSurf.Views.Layout
EclipticSurf.Effects.Almanac
EclipticSurf.Effects.Time
build-depends:
base >= 4.13 && <= 4.17
, almanac
, containers
, swiss-ephemeris >= 1.4.2 && <2
, time
, lens
, Chart
, Chart-diagrams
, colour
, directory
, optparse-applicative
-- from freenatalchart.xyz
, cmark
, diagrams
, diagrams-contrib
, diagrams-core
, diagrams-lib
, diagrams-svg
--, envy
, http-api-data
, http-types
, lucid
, servant
, servant-lucid
, servant-server
, svg-builder
, timezone-detect >=0.3.0.0
, validation-selective
, wai
, wai-enforce-https
, warp
-- from flora.pm
, bytestring
, colourista
, envparse
-- alternative to interpolate
, PyF
--, raven-haskell -- client for sentry.io
, text
--, text-display -- user-facing output
, wai-logger
, wai-middleware-static
-- from geocode.city
, fused-effects
hs-source-dirs: src
executable ecliptic-surf-exe
main-is: Main.hs
build-depends:
base
,ecliptic-surf
hs-source-dirs: app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010