gdritter repos new-inf-blog / master inf-blog.cabal
master

Tree @master (Download .tar.gz)

inf-blog.cabal @masterraw · history · blame

name: inf-blog
version: 1.0
-- synopsis:
-- description:
license: BSD3
author: Getty Ritter <gettylefou@gmail.com>
maintainer: Getty Ritter <gettylefou@gmail.com>
copyright: @2018 Getty Ritter
-- category:
build-type: Simple
cabal-version: >=1.14
extra-source-files:
  static/main.css
  static/highlighting.css
  templates/*.mustache

executable inf-blog
  hs-source-dirs: src
  main-is: Main.hs
  other-modules: Inf.Types
                 Inf.Templates
                 Inf.DB
                 Inf.DB.Monad
                 Inf.Feed
                 Inf.Log
                 Inf.Web
                 Inf.Web.Cookies
  default-language: Haskell2010
  default-extensions: ScopedTypeVariables
  ghc-options: -Wall
  build-depends: base          >=4.7 && <5
               , aeson         >= 1.4.1 && < 1.5
               , bytestring    >= 0.10.8 && < 0.11
               , text          >= 1.2.3 && < 1.3
               , unix          >= 2.7.2 && < 2.8
               , time          >= 1.8.0 && < 1.9
               , feed          >= 1.0.0 && < 1.1
               , xml-conduit   >= 1.8.0 && < 1.9
               , filepath      >= 1.4.2 && < 1.5
               , xml-types     >= 0.3.6 && < 0.4
               , http-types    >= 0.12.2 && < 0.13
               , pandoc
               , pwstore-fast  >= 2.4.4 && < 2.5
               , sqlite-simple >= 0.4.16 && < 0.5
               , stache        >= 2.0.1 && < 2.1
               , wai           >= 3.2.1 && < 3.3
               , warp          >= 3.2.25 && < 3.3