diff options
author | Nick <nicksima@gmail.com> | 2019-01-25 10:30:03 -0800 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-01-28 12:07:42 -0800 |
commit | 5a9ca5c89aa32331450609e13aab1cfb56d9020b (patch) | |
tree | b5fa60719c96c01c132e2f708b58c8059fe458d0 /ibb/ibb.cabal | |
parent | fda568da816f38d318fb9b0d7f8798eb36c792c3 (diff) |
Implement a basic mock-up of IBB
Diffstat (limited to 'ibb/ibb.cabal')
-rw-r--r-- | ibb/ibb.cabal | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ibb/ibb.cabal b/ibb/ibb.cabal new file mode 100644 index 0000000..2543ebb --- /dev/null +++ b/ibb/ibb.cabal @@ -0,0 +1,25 @@ +name: ibb +version: 2 +category: Text +homepage: https://bsima.me +author: Nick Sima +maintainer: nicksima@gmail.com +copyright: 2018 Nick Sima +license: BSD3 +license-file: LICENSE +build-type: Simple +cabal-version: >= 1.10 + +executable ibb + main-is: Main.hs + other-modules: + Paths_web + hs-source-dirs: . + default-extensions: OverloadedStrings + ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N + build-depends: + base >= 4.6 && < 5 + , scotty + , shakespeare + , blaze + default-language: Haskell2010
\ No newline at end of file |