packages feed

system-util-0.2: system-util.cabal

name:            system-util
version:         0.2
license:         BSD3
license-file:    LICENSE
author:          João Cristóvão
maintainer:      jmacristovao@gmail.com
synopsis:        Various system utils lifted to EitherT
description:     Various system functions lifted to EitherT. 
                 Provides higher level functions to those in system-lifted.
category:        System
cabal-version:   >= 1.16
build-type:      Simple
homepage:        https://github.com/jcristovao/system-util

library
    exposed-modules: System.Util
    build-depends:   base               >= 4        && < 5
                   , transformers       >= 0.3      && < 0.5
                   , template-haskell   >= 2.5      && < 2.10
                   , either             >= 4.1.1    && < 4.3
                   , semigroups         >= 0.13     && < 0.15
                   , unix               >= 2.6      && < 2.8
                   , directory          >= 1.2.0.1  && < 1.3
                   , filepath           >= 1.3.0.1  && < 1.4
                   , system-lifted      >= 0.2.0.1  && < 0.3
                     
    hs-source-dirs:  src
    ghc-options:     -Wall
    default-language: Haskell2010



test-suite test
    type:         exitcode-stdio-1.0
    main-is:      main.hs
    hs-source-dirs: test,src
    build-depends:   base               >= 4        && < 5
                   , transformers       >= 0.3
                   , template-haskell   >= 2.5
                   , either             >= 4.1.1
                   , semigroups         >= 0.13     && < 0.15
                   , quickcheck-instances >= 0.3.6
                   , hspec              >= 1.7.2
                   , directory          >= 1.2.0.1
                   , easy-data          >= 0.2
                   , system-lifted      >= 0.2.0
                   , filepath           >= 1.3.0.1

    default-language: Haskell2010

--source-repository head
  --type:     git
  --location: https://github.com/jcristovao/migrationplus