summaryrefslogtreecommitdiff
path: root/biz.cabal
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2019-02-23 19:46:09 -0800
committerBen Sima <ben@bsima.me>2019-02-23 19:54:41 -0800
commitf75eaf7fff963b88e412d315d0fdef8151943c20 (patch)
tree4e10e624ab6b93b640f2a93f648207a41cc90a25 /biz.cabal
parent81313e15c70bf1c2fe2cd4720f19ae7a2e952fc7 (diff)
Reorganize directory
Diffstat (limited to 'biz.cabal')
-rw-r--r--biz.cabal30
1 files changed, 30 insertions, 0 deletions
diff --git a/biz.cabal b/biz.cabal
new file mode 100644
index 0000000..75aaf91
--- /dev/null
+++ b/biz.cabal
@@ -0,0 +1,30 @@
+name: ibb
+version: 3
+category: Web
+homepage: https://ibb.simatime.com
+author: Nick Sima
+maintainer: nicksima@gmail.com
+copyright: 2018 Nick Sima
+license: GPL-3
+license-file: LICENSE
+build-type: Simple
+cabal-version: >= 1.10
+
+executable ibb
+ main-is: Main.hs
+ hs-source-dirs: apex
+ default-extensions: OverloadedStrings
+ ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
+ other-modules:
+ Influencers
+ build-depends:
+ base >= 4.6 && < 5
+ , blaze-html
+ , blaze-markup
+ , bytestring
+ , random
+ , random-shuffle
+ , scotty
+ , shakespeare
+ , text
+ default-language: Haskell2010