heyefi-1.1.0.0: heyefi.cabal
name: heyefi
version: 1.1.0.0
synopsis: A server for Eye-Fi SD cards.
description: This server listens for Eye-Fi cards that want to upload files to a computer and stores them in an upload directory. It is meant to be run as a system daemon.
homepage: https://github.com/ryantm/heyefi
license: PublicDomain
license-file: LICENSE
author: Ryan Mulligan
maintainer: ryan@ryantm.com
category: Network
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/ryantm/heyefi
executable heyefi
default-language: Haskell2010
hs-source-dirs: src
main-is: HEyefi/Main.hs
other-modules: HEyefi.App
, HEyefi.Constant
, HEyefi.Config
, HEyefi.Hex
, HEyefi.Log
, HEyefi.Soap
, HEyefi.SoapResponse
, HEyefi.Types
, HEyefi.UploadPhoto
, HEyefi.StartSession
, HEyefi.Strings
, HEyefi.CommandLineOptions
ghc-options: -Wall
build-depends: base >=4.8 && <=5
, stm
, unix
, MissingH
, bytestring
, utf8-string
, time
, iso8601-time
, warp
, wai
, http-types
, HandsomeSoup
, hxt
, case-insensitive
, multipart
, tar
, configurator
, unordered-containers
, text
, temporary
, directory
, filepath
, mtl
, transformers
, exceptions
, random
, optparse-applicative
test-suite test-heyefi
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test, src
main-is: Spec.hs
ghc-options: -Wall
build-depends: base >=4.8 && <=5
, stm
, unix
, containers
, hspec
, hspec-wai
, MissingH
, bytestring
, utf8-string
, time
, iso8601-time
, warp
, wai
, wai-extra
, http-types
, HandsomeSoup
, hxt
, case-insensitive
, multipart
, tar
, configurator
, unordered-containers
, text
, silently
, filepath
, directory
, temporary
, directory
, mtl
, transformers
, exceptions
, random
, optparse-applicative