name: socket-unix version: 0.2.0.0 synopsis: 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 stability: Experimental build-type: Simple extra-source-files: README.md cabal-version: >=1.10 library hs-source-dirs: src if os(linux) hs-source-dirs: platform/linux if os(osx) || os(darwin) || os(freebsd) || os(openbsd) || os(netbsd) || os(solaris) hs-source-dirs: platform/unix exposed-modules: System.Socket.Family.Unix other-modules: System.Socket.Family.Unix.Internal System.Socket.Family.Unix.Platform build-depends: base >= 4.7 && < 5 , socket >= 0.8.0.0 && < 0.9.0.0 , bytestring >= 0.10.0.0 && < 0.11 ghc-options: -Wall -O2 default-language: Haskell2010 test-suite default type: exitcode-stdio-1.0 hs-source-dirs: test if os(linux) hs-source-dirs: platform_test/linux if os(osx) || os(darwin) || os(freebsd) || os(openbsd) || os(netbsd) || os(solaris) hs-source-dirs: platform_test/unix main-is: test.hs other-modules: Internal Platform build-depends: base >= 4.7 && < 5 , socket >= 0.8.0.0 && < 0.9.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 if os(linux) hs-source-dirs: platform_test/linux if os(osx) || os(darwin) || os(freebsd) || os(openbsd) || os(netbsd) || os(solaris) hs-source-dirs: platform_test/unix main-is: test.hs other-modules: Internal Platform build-depends: base >= 4.7 && < 5 , socket >= 0.8.0.0 && < 0.9.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