packages feed

hstorchat-0.1.1.0: hstorchat.cabal

name:                hstorchat
version:             0.1.1.0
synopsis:            Distributed instant messaging over Tor
copyright:           (c) 2014 Christopher Reichert
license:             GPL-3
license-file:        LICENSE
author:              Christopher Reichert
maintainer:          creichert07@gmail.com
build-type:          Simple
cabal-version:       >=1.10
category:            Network
stability:           experimental
data-files:          qml/*.qml, qml/img/*.png
description:
    A Distributed instant messaging application built on Tor Hidden Services.

    Compatible with the original TorChat client.

library
  hs-source-dirs:      src
  default-language:    Haskell2010
  build-depends:       attoparsec == 0.11.*,
                       base       == 4.*,
                       containers >= 0.4 && < 0.6,
                       hsqml      == 0.3.*,
                       network    == 2.5.*,
                       random     == 1.0.*,
                       safecopy   == 0.8.*,
                       socks      == 0.5.*,
                       tagged     == 0.7.*,
                       text       == 1.1.*

  exposed-modules:     Network.HSTorChat.Client,
                       Network.HSTorChat.GUI,
                       Network.HSTorChat.Protocol

executable hstorchat
  main-is:             src/Main.hs
  ghc-options:         -Wall -threaded -fno-warn-unused-do-bind
  default-language:    Haskell2010
  build-depends:       base       == 4.*,
                       containers >= 0.4 && < 0.6,
                       hsqml      == 0.3.*,
                       hstorchat,
                       network    == 2.5.*,
                       process    == 1.2.*,
                       text       == 1.1.*

test-suite hstorchat-tests
  type:                exitcode-stdio-1.0
  hs-source-dirs:      tests
  main-is:             Main.hs
  ghc-options:         -Wall
  default-language:    Haskell2010
  build-depends:       base                       == 4.*,
                       hstorchat,
                       HUnit                      == 1.2.*,
                       QuickCheck                 == 2.7.*,
                       test-framework             == 0.8.*,
                       test-framework-hunit       == 0.3.*,
                       test-framework-quickcheck2 == 0.3.*

source-repository head
    type:     git
    location: https://github.com/creichert/hstorchat