packages feed

marvin-0.0.8: marvin.cabal

name: marvin
version: 0.0.8
cabal-version: >=1.10
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: Copyright: (c) 2016 Justus Adam
maintainer: dev@justus.science
homepage: https://marvin.readthedocs.io
synopsis: A modular chat bot
description:
    A framework for writing portable chat bots. Inspired by hubot. The documentation is on readthedocs: <https://marvin.readthedocs.io>
category: Development
author: JustusAdam
data-files:
    initializer/*.hs.mustache
    initializer/config.cfg.mustache
    initializer/bot.cabal.mustache
data-dir: resources
extra-source-files:
    README.md
    preprocessor/Main.mustache

source-repository head
    type: git
    location: https://github.com/JustusAdam/marvin

library
    exposed-modules:
        Marvin
        Marvin.Prelude
        Marvin.Types
        Marvin.Run
        Marvin.Util.Mutable
        Marvin.Util.Regex
        Marvin.Util.Random
        Marvin.Util.JSON
        Marvin.Util.HTTP
        Marvin.Adapter
        Marvin.Adapter.Shell
        Marvin.Adapter.Slack
        Marvin.Adapter.Telegram
        Marvin.Internal
        Marvin.Internal.Types
    build-depends:
        base >=4.7 && <5,
        wreq >=0.4.1.0 && <0.5,
        aeson >=0.11.2.1 && <0.12,
        mtl >=2.2.1 && <2.3,
        lens ==4.14.*,
        text-icu >=0.7.0.1 && <0.8,
        vector >=0.11.0.0 && <0.12,
        optparse-applicative >=0.12.1.0 && <0.13,
        configurator >=0.3.0.0 && <0.4,
        bytestring >=0.10.8.1 && <0.11,
        async >=2.1.0 && <2.2,
        monad-logger >=0.3.19 && <0.4,
        websockets >=0.9.7.0 && <0.10,
        network-uri >=2.6.1.0 && <2.7,
        wuss >=1.1.1 && <1.2,
        random ==1.1.*,
        hashable >=1.2.4.0 && <1.3,
        text >=1.2.2.1 && <1.3,
        unordered-containers >=0.2.7.1 && <0.3,
        stm >=2.4.4.1 && <2.5,
        marvin-interpolate >0.4 && <0.5,
        lifted-base >=0.2.3.8 && <0.3,
        lifted-async >=0.9.0 && <0.10,
        wai >=3.2.1.1 && <3.3,
        warp >=3.2.8 && <3.3,
        haskeline >=0.7.2.3 && <0.8,
        monad-loops >=0.4.3 && <0.5,
        mono-traversable >=1.0.0.1 && <1.1,
        time >=1.6.0.1 && <1.7,
        transformers-base >=0.4.4 && <0.5,
        monad-control >=1.0.1.0 && <1.1
    default-language: Haskell2010
    default-extensions: OverloadedStrings TypeFamilies
                        MultiParamTypeClasses TupleSections GADTs TemplateHaskell
                        QuasiQuotes
    hs-source-dirs: src
    other-modules:
        Util

executable marvin-pp
    main-is: Main.hs
    build-depends:
        base >=4.9.0.0 && <4.10,
        mustache ==2.1.*,
        directory >=1.2.6.2 && <1.3,
        filepath >=1.4.1.0 && <1.5,
        marvin >=0.0.8 && <0.1,
        configurator >=0.3.0.0 && <0.4,
        optparse-applicative >=0.12.1.0 && <0.13,
        bytestring >=0.10.8.1 && <0.11,
        mono-traversable >=1.0.0.1 && <1.1,
        text >=1.2.2.1 && <1.3,
        aeson >=0.11.2.1 && <0.12
    default-language: Haskell2010
    default-extensions: OverloadedStrings TypeFamilies
                        MultiParamTypeClasses TupleSections GADTs
    hs-source-dirs: preprocessor
    ghc-options: -threaded -rtsopts -with-rtsopts=-N

executable marvin-init
    main-is: Main.hs
    build-depends:
        base >=4.9.0.0 && <4.10,
        mustache ==2.1.*,
        directory >=1.2.6.2 && <1.3,
        filepath >=1.4.1.0 && <1.5,
        optparse-applicative >=0.12.1.0 && <0.13,
        mono-traversable >=1.0.0.1 && <1.1,
        text >=1.2.2.1 && <1.3
    default-language: Haskell2010
    default-extensions: OverloadedStrings TypeFamilies
                        MultiParamTypeClasses TupleSections GADTs
    hs-source-dirs: initializer
    other-modules:
        Paths_marvin
    ghc-options: -threaded -rtsopts -with-rtsopts=-N