packages feed

coquina-0.1.0.0: coquina.cabal

cabal-version:      >=1.10
name:               coquina
version:            0.1.0.0
synopsis:           Yet another shell monad.
description:        A simple monad for shelling out from Haskell programs.
bug-reports:        https://github.com/obsidiansystems/coquina/issues
license:            BSD3
license-file:       LICENSE
author:             Obsidian Systems LLC
maintainer:         maintainer@obsidian.systems
copyright:          2020 Obsidian Systems LLC
category:           shell
build-type:         Simple
extra-source-files:
  CHANGELOG.md
  LICENSE
  README.md

library
  hs-source-dirs:   src
  build-depends:
      async        >=2.2.2  && <2.3
    , base         >=4.12.0 && <4.15
    , bytestring   >=0.10.8 && <0.11
    , containers   >=0.6.0  && <0.7
    , deepseq      >=1.4.4  && <1.5
    , directory    >=1.3.3  && <1.4
    , exceptions   >=0.10.3 && <0.11
    , filepath     >=1.4.2  && <1.5
    , monad-logger >=0.3    && <0.4
    , mtl          >=2.2.2  && <2.3
    , process      >=1.6.5  && <1.7
    , stm          >=2.5.0  && <2.6
    , temporary    >=1.3    && <1.4
    , text         >=1.2.3  && <1.3
    , transformers >=0.5    && <0.6

  exposed-modules:
    Coquina
    Coquina.Internal

  ghc-options:      -Wall
  default-language: Haskell2010

executable readme
  main-is:            README.lhs
  build-depends:
      base
    , coquina
    , process
    , text

  default-language:   Haskell2010
  ghc-options:        -pgmL markdown-unlit
  build-tool-depends: markdown-unlit:markdown-unlit -any

test-suite unit-tests
  type:             exitcode-stdio-1.0
  main-is:          unit-tests.hs
  hs-source-dirs:   test
  ghc-options:      -Wall -rtsopts
  build-depends:
      async
    , base
    , coquina
    , exceptions
    , hspec
    , lens
    , mtl
    , process
    , stm
    , temporary
    , text
    , which >= 0.2

  default-language: Haskell2010

source-repository head
  type:     git
  location: git://github.com/obsidiansystems/coquina.git