gdritter repos bb8 / master bb8.cabal
master

Tree @master (Download .tar.gz)

bb8.cabal @masterraw · history · blame

name:             bb8
version:          0.1.0.0
-- synopsis:
-- description:
license:          BSD3
license-file:     LICENSE
author:           Getty Ritter <gdritter@galois.com>
maintainer:       Getty Ritter <gdritter@galois.com>
copyright:        ©2017 Getty Ritter
-- category:
build-type:       Simple
cabal-version:    >= 1.14
extra-source-files: static/main.html

library
  exposed-modules: BB8
                 , BB8.Common
                 , BB8.DB
                 , BB8.Types
                 , BB8.Config
                 , BB8.Jobs
                 , BB8.Queue
                 , BB8.Server
  hs-source-dirs: src
  default-extensions: OverloadedStrings,
                      ScopedTypeVariables
  ghc-options: -Wall
  build-depends: base >=4.7 && <5
               , aeson
               , bytestring
               , directory
               , filepath
               , http-client
               , process
               , scotty
               , stm
               , text
               , time
               , containers
               , sqlite-simple
               , file-embed
               , config-ini
  default-language:    Haskell2010

executable bb8
  hs-source-dirs:      bb8
  main-is:             Main.hs
  default-extensions:  OverloadedStrings,
                       ScopedTypeVariables
  ghc-options:         -Wall
  build-depends:       base >=4.7 && <5
                     , bb8
  default-language:    Haskell2010