File: network-multicast.cabal

package info (click to toggle)
haskell-network-multicast 0.3.2-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 84 kB
  • sloc: haskell: 32; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 979 bytes parent folder | download | duplicates (4)
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
name:               network-multicast
version:            0.3.2
copyright:          2008-2019 Audrey Tang
license:            PublicDomain
license-file:       LICENSE
author:             Audrey Tang <audreyt@audreyt.org>
maintainer:         Marco Zocca
synopsis:           Simple multicast library
description:        The "Network.Multicast" module is for sending
                    UDP datagrams over multicast (class D) addresses.
stability:          experimental
build-type:         Simple
category:           Network
cabal-version:      >= 1.6
extra-source-files: examples/sender.hs examples/receiver.hs ChangeLog

library
    extensions:         ForeignFunctionInterface, CPP, FlexibleInstances
    exposed-modules:    Network.Multicast
    build-depends:      base >= 4 && < 5, network, network-bsd
    hs-source-dirs:     src
    if os(win32)
        extra-libraries: ws2_32

source-repository head
  type:     git
  location: http://github.com/audreyt/network-multicast