-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathn2o-samples.cabal
37 lines (35 loc) · 1.01 KB
/
n2o-samples.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: n2o-samples
version: 0.11
homepage: https://github.com/xafizoff/n2o-hs#readme
bug-reports: https://github.com/xafizoff/n2o-hs/issues
author: Marat Khafizov
maintainer: xafizoff@gmail.com
copyright: All rights reserved (c)
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files: README.md
description: As example this package provides simple Nitro N2O
application with index and about pages.
source-repository head
type: git
location: https://github.com/xafizoff/n2o-hs
executable n2o-sample
main-is: Main.hs
other-modules:
Paths_n2o_samples
hs-source-dirs:
src
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && < 5
, n2o
, n2o-nitro
, cereal
, bytestring
, text
, websockets
, stm
, containers
default-language: Haskell2010