packages feed

pipes-p2p-0.2: pipes-p2p.cabal

name:                pipes-p2p
version:             0.2
cabal-version:       >=1.10
tested-with:         GHC == 7.6.3
build-type:          Simple
homepage:            https://github.com/jdnavarro/pipes-p2p
license:             BSD3
license-file:        LICENSE
author:              Danny Navarro
maintainer:          j@dannynavarro.net
category:            Network, Pipes
synopsis:            P2P network nodes with pipes
description:
  Toy library to facilitate the creation of custom P2P networks using `pipes`.

extra-source-files: CHANGELOG

source-repository head
    type: git
    location: git@github.com:jdnavarro/pipes-p2p.git

library
  exposed-modules:     Pipes.Network.P2P
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall
  build-depends:       base >=4.6 && <4.8,
                       async >=2,
                       binary >=0.7,
                       mtl >=2,
                       bytestring >=0.10,
                       errors >=1.4,
                       exceptions >=0.3,
                       pipes >=0.4,
                       pipes-concurrency >=2.0,
                       pipes-network >=0.6,
                       network >=2.4,
                       network-simple-sockaddr