packages feed

corebot-bliki-0.2: corebot-bliki.cabal

name:           corebot-bliki
version:        0.2
synopsis:       A bliki written using yesod. Uses pandoc to process files stored in git.
description:    Also provides a sample use of the library that uses $HOME/bliki for data and serves
                to port 8080.
                See http://www.corebotllc.com for public site built using this library.
cabal-version:  >= 1.8
build-type:     Simple
data-files:     static/*.js
license:        BSD3
license-file:   LICENSE
homepage:       http://github.com/coreyoconnor/corebot-bliki
category:       yesod
maintainer:     Corey O'Connor<coreyoconnor@gmail.com>

source-repository head
    type:       git
    location:   git://github.com/coreyoconnor/corebot-bliki.git
    
library 
    hs-source-dirs: src
    exposed-modules:    Yesod.CoreBot.Bliki
                        Yesod.CoreBot.Bliki.Widgets
                        Yesod.CoreBot.Bliki.Config
    other-modules:      Yesod.CoreBot.Bliki.Store
                        Yesod.CoreBot.Bliki.DB
                        Yesod.CoreBot.Bliki.Resources.Blog
                        Yesod.CoreBot.Bliki.Resources.Data
                        Yesod.CoreBot.Bliki.Resources.Wiki
                        Yesod.CoreBot.Bliki.Resources.Static
                        Yesod.CoreBot.Bliki.Resources.Base
                        Yesod.CoreBot.Bliki.Base
                        Yesod.CoreBot.Bliki.Prelude
                        Yesod.CoreBot.Bliki.Cache.UpdateHTML
    extensions:     TemplateHaskell
                    QuasiQuotes
                    TypeFamilies
                    MultiParamTypeClasses
                    FlexibleInstances
                    NoMonomorphismRestriction
                    OverloadedStrings
                    RankNTypes
                    ScopedTypeVariables
                    UndecidableInstances
                    EmptyDataDecls
                    GADTs
                    FlexibleContexts
    build-depends:  base             >= 4.4.0 && < 5,
                    aeson            >= 0.3.2.11,
                    blaze-builder    >= 0.3.0.1,
                    bytestring       >= 0.9.2.0,
                    containers       >= 0.4.1.0,
                    directory        >= 1.1.0.1,
                    filepath         >= 1.2.0.1,
                    filestore        >= 0.4.0.5,
                    http-types       >= 0.6.7,
                    monads-tf        >= 0.1.0.0,
                    pandoc           >= 1.9,
                    text             >= 0.11.1.5,
                    template-haskell >= 2.6.0.0,
                    time             >= 1.2.0.5,
                    yesod            >= 0.9.4.1

executable corebot-bliki
    main-is: DefaultMain.hs
    hs-source-dirs: src
    other-modules:  Paths_corebot_bliki
    extensions:     TemplateHaskell
                    QuasiQuotes
                    TypeFamilies
                    MultiParamTypeClasses
                    FlexibleInstances
                    NoMonomorphismRestriction
                    OverloadedStrings
                    RankNTypes
                    ScopedTypeVariables
                    UndecidableInstances
                    EmptyDataDecls
                    GADTs
                    FlexibleContexts
    ghc-options:    -threaded
    build-depends:  base             >= 4.4.0 && < 5,
                    aeson            >= 0.3.2.11,
                    blaze-builder    >= 0.3.0.1,
                    bytestring       >= 0.9.2.0,
                    containers       >= 0.4.1.0,
                    directory        >= 1.1.0.1,
                    filepath         >= 1.2.0.1,
                    filestore        >= 0.4.0.5,
                    http-types       >= 0.6.7,
                    monads-tf        >= 0.1.0.0,
                    pandoc           >= 1.9,
                    text             >= 0.11.1.5,
                    template-haskell >= 2.6.0.0,
                    time             >= 1.2.0.5,
                    yesod            >= 0.9.4.1