packages feed

socket-unix-0.1.0.0: socket-unix.cabal

name:                socket-unix
version:             0.1.0.0
synopsis:            A Unix domain sockets
description:         A Unix domain socket extension for the socket library
homepage:            https://github.com/vyacheslavhashov/haskell-socket-unix#readme
license:             MIT 
license-file:        LICENSE
author:              Vyacheslav Hashov
maintainer:          vyacheslavhashov@gmail.com
copyright:           2017 Vyacheslav Hashov
category:            System, Network
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     System.Socket.Family.Unix
  build-depends:       base         >= 4.7      && < 5
                     , socket       >= 0.6.0.0  && < 0.8.0.0
                     , bytestring   >= 0.10.0.0 && < 0.11

  ghc-options:         -Wall
  default-language:    Haskell2010

test-suite default
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             test.hs
  build-depends:       base         >= 4.7      && < 5
                     , socket       >= 0.6.0.0  && < 0.8.0.0
                     , socket-unix
                     , tasty        >= 0.11     && < 0.12
                     , tasty-hunit  >= 0.9      && < 0.10
                     , bytestring   >= 0.10.0.0 && < 0.11
                     , unix         >= 2.7      && < 3.0
                     , async        >= 2.0      && < 2.3
  default-language:    Haskell2010

test-suite threaded
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             test.hs
  build-depends:       base         >= 4.7      && < 5
                     , socket       >= 0.6.0.0  && < 0.8.0.0
                     , socket-unix
                     , tasty        >= 0.11     && < 0.12
                     , tasty-hunit  >= 0.9      && < 0.10
                     , bytestring   >= 0.10.0.0 && < 0.11
                     , unix         >= 2.7      && < 3.0
                     , async        >= 2.0      && < 2.3
  ghc-options:         -threaded
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/vyacheslavhashov/haskell-socket-unix