-
Notifications
You must be signed in to change notification settings - Fork 0
/
twain-bulletin-app.cabal
37 lines (34 loc) · 1.22 KB
/
twain-bulletin-app.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
name: twain-bulletin-app
version: 0.1.0.0
synopsis: A simple bulletin board web app using twain
description: Please see readme.md
homepage: https://github.com/soupi/learn-twain-bulletin-app
license-file: LICENSE
author: Gil Mizrahi
maintainer: [email protected]
copyright: 2022 Gil Mizrahi
category: Web
build-type: Simple
cabal-version: >=1.10
extra-source-files: readme.md
library
hs-source-dirs: src
exposed-modules: Bulletin
ghc-options: -Wall -fno-warn-type-defaults
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, text >= 2
, containers
, time
, stm
, twain >= 2.1.0.0
, warp
, wai-extra
, lucid
executable bulletin-app
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
ghc-options: -Wall -static -optl-static -optl-pthread -fPIC -O -threaded -rtsopts -with-rtsopts=-N
build-depends: base >= 4.7 && < 5
, twain-bulletin-app