summaryrefslogtreecommitdiff
path: root/ibb/ibb.cabal
blob: b2454962f514f6628e7230ce1ab75c5a8039fbbd (plain)
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
name:           ibb
version:        2
category:       Text
homepage:       https://bsima.me
author:         Nick Sima
maintainer:     nicksima@gmail.com
copyright:      2018 Nick Sima
license:        AllRightsReserved
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

executable ibb
  main-is: Main.hs
  hs-source-dirs: .
  default-extensions: OverloadedStrings
  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base      >= 4.6  && < 5
    , scotty
    , shakespeare
    , blaze-html
    , blaze-markup
    , text
 default-language: Haskell2010