packages feed

handsy-0.0.9: handsy.cabal

name:          handsy
version:       0.0.9
synopsis:      A DSL to describe common shell operations and interpeters for running them locally and remotely.
-- description:   
Homepage:      https://github.com/utdemir/handsy
license:       BSD3
author:        Utku Demir
maintainer:    utdemir@gmail.com
category:      System
build-type:    Simple
cabal-version: >=1.10


source-repository head
  type:     git
  location: https://github.com/utdemir/master

library
  exposed-modules:  System.Handsy
                    System.Handsy.Remote
                    System.Handsy.Core
  build-depends:    base >=4.6 && <4.8
                  , bytestring
                  , process
                  , transformers
                  , free
                  , process-extras
                  , shell-escape
  hs-source-dirs:   src
  default-language: Haskell2010
  ghc-options: -Wall

test-suite tests
    type:             exitcode-stdio-1.0
    main-is:          Test.hs
    default-language: Haskell2010
    hs-source-dirs:   src test
    build-depends: base >=4.6 && < 4.8
                 , bytestring
                 , process
                 , transformers
                 , free
                 , process-extras
                 , shell-escape
                 , tasty
                 , tasty-hunit