-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsocket-unix.cabal
76 lines (71 loc) · 2.99 KB
/
socket-unix.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
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: [email protected]
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