diff options
author | Vincent Ambo <tazjin@gmail.com> | 2015-11-19T15·21+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2015-11-19T15·21+0100 |
commit | 853be2a99c4f4cd8a75f807d37fb97ec1497215d (patch) | |
tree | 5121ac03a3f7f431c23a25be3f84ff6c9778c393 /TazBlog.cabal | |
parent | 3a86d653ce759d6e9daff93d0da8fa588d3b404e (diff) |
[build] Use Stack for building
Diffstat (limited to 'TazBlog.cabal')
-rw-r--r-- | TazBlog.cabal | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/TazBlog.cabal b/TazBlog.cabal index 6d0093c0b582..f3daba16f712 100644 --- a/TazBlog.cabal +++ b/TazBlog.cabal @@ -14,37 +14,37 @@ Executable tazblog hs-source-dirs: src main-is: Main.hs ghc-options: -O2 - Build-depends: - base, - bytestring, - happstack-server, - text, - blaze-html, - blaze-markup, - crypto-api, - cryptohash, - old-locale, - time, - base64-bytestring, - acid-state, - ixset, - safecopy, - mtl, - transformers, - network, - options, - rss, - hamlet, - shakespeare, - markdown + Build-depends: base, + bytestring, + happstack-server, + text, + blaze-html, + blaze-markup, + crypto-api, + cryptohash, + old-locale, + time, + base64-bytestring, + acid-state, + ixset, + safecopy, + mtl, + transformers, + network, + network-uri, + options, + rss, + hamlet, + shakespeare, + markdown extensions: - DeriveDataTypeable - FlexibleContexts - GeneralizedNewtypeDeriving - MultiParamTypeClasses - OverloadedStrings - RecordWildCards - ScopedTypeVariables - TemplateHaskell - TypeFamilies - QuasiQuotes + DeriveDataTypeable + FlexibleContexts + GeneralizedNewtypeDeriving + MultiParamTypeClasses + OverloadedStrings + RecordWildCards + ScopedTypeVariables + TemplateHaskell + TypeFamilies + QuasiQuotes |