packages feed

adb-0.1.0.0: adb.cabal

-- Initial adb.cabal generated by cabal init.  For further documentation, 
-- see http://haskell.org/cabal/users-guide/

name:                adb
version:             0.1.0.0
synopsis:            Android Debug Bridge (ADB) protocol
-- description:         
license:             BSD3
license-file:        LICENSE
author:              Stephen Blackheath
maintainer:          adb.protocol.stephen@blacksapphire.com
-- copyright:           
category:            Network
build-type:          Simple
extra-source-files:  programs/generate-rsa-key.hs
                     programs/adb-shell.hs
                     Network/ADB/os_port.h
                     Network/ADB/crypto.h
                     Network/ADB/adb_auth_private_key.h
                     Network/ADB/adb_auth.h
                     Network/ADB/bigint_impl.h
                     Network/ADB/os_int.h
                     Network/ADB/adb.h
                     Network/ADB/bigint.h
cabal-version:       >=1.10

library
  exposed-modules:     Network.ADB.Transport,
                       Network.ADB.Client,
                       Network.ADB.Server,
                       Network.ADB.Socket
  other-modules:       Network.ADB.Common
  other-extensions:    ScopedTypeVariables, FlexibleContexts, OverloadedStrings, ForeignFunctionInterface, EmptyDataDecls
  build-depends:       base >=4.6 && <4.8,
                       mtl >=2.1 && <2.2,
                       bytestring >=0.10,
                       network >=2.4,
                       containers >=0.5,
                       cereal >=0.4
  c-sources:           Network/ADB/adb_auth.c
                       Network/ADB/bigint.c
                       Network/ADB/rsa.c
  default-language:    Haskell2010