gdritter repos bock / master bock.cabal
master

Tree @master (Download .tar.gz)

bock.cabal @masterraw · history · blame

name:             bock
version:          0.1.0.0
-- synopsis:
-- description:
license:          BSD3
license-file:     LICENSE
author:           Getty Ritter <samothes@infinitenegativeutility.com>
maintainer:       Getty Ritter <samothes@infinitenegativeutility.com>
copyright:        ©2017 Getty Ritter
-- category:
build-type:       Simple
cabal-version:    >= 1.14

library
  hs-source-dirs:      src
  if os(windows)
    hs-source-dirs:    color/default
  else
    hs-source-dirs:    color/unix
    build-depends:     unix
  exposed-modules:     Logging.Bock
  other-modules:       Logging.Bock.Color
  ghc-options:         -Wall
  build-depends:       base >=4.7 && <5
  default-language:    Haskell2010
  default-extensions:  OverloadedStrings,
                       ScopedTypeVariables

executable example
  hs-source-dirs: example
  main-is: Main.hs
  build-depends: base, bock