name:                simplessh
version:             0.2.0.5
synopsis:            Simple wrapper around libssh2
description:         It supports authentication by password or keys. Everything is in the SimpleSSH monad which is ErrorT SimpleSSHError IO, allowing to manage errors in a "haskeller" way.
license:             BSD3
license-file:        LICENSE
author:              Thomas Feron
maintainer:          tho.feron@gmail.com
category:            Network
build-type:          Simple
cabal-version:       >=1.8
bug-reports:         http://hub.darcs.net/thoferon/simplessh/issues
homepage:            http://hub.darcs.net/thoferon/simplessh

extra-source-files: include/simplessh.h
                  , include/simplessh/types.h

library
  exposed-modules:   Network.SSH.Client.SimpleSSH
  other-modules:     Network.SSH.Client.SimpleSSH.Types
                   , Network.SSH.Client.SimpleSSH.Foreign
  hs-source-dirs:    src
  c-sources:         cbits/simplessh/types.c
                   , cbits/simplessh.c
  includes:          include/simplessh/types.h
                   , include/simplessh.h
  include-dirs:      include
  extra-libraries:   ssh2
  build-depends:     base > 4 && < 6
                   , mtl >= 2
                   , bytestring >= 0.9
  cc-options:        -Wall -g
  ghc-options:       -Wall

source-repository head
  type:              darcs
  location:          http://hub.darcs.net/thoferon/simplessh
  tag:               0.2.0.5