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
|
name: process-conduit
version: 1.1.0.0
synopsis: Conduits for processes
description:
Conduits for processes.
For more details: <https://github.com/tanakh/process-conduit/blob/master/README.md>
homepage: http://github.com/tanakh/process-conduit
license: BSD3
license-file: LICENSE
author: Hideyuki Tanaka
maintainer: Hideyuki Tanaka <tanaka.hideyuki@gmail.com>
copyright: (c) 2011-2013, Hideyuki Tanaka
category: System, Conduit
build-type: Simple
cabal-version: >=1.8
extra-source-files: README.md
source-repository head
type: git
location: git://github.com/tanakh/process-conduit.git
library
exposed-modules: Data.Conduit.Process
System.Process.QQ
build-depends: base == 4.*
, template-haskell >= 2.4
, mtl >= 2.0
, control-monad-loop == 0.1.*
, bytestring >= 0.9
, text >= 0.11
, process >= 1.0
, conduit >= 1.1
, resourcet >= 1.1
, shakespeare-text >= 1.0
, shakespeare
ghc-options: -Wall
test-suite process-conduit-test
type: exitcode-stdio-1.0
hs-source-dirs: dist-ghc
main-is: ../test.hs
build-depends: base == 4.*
, bytestring
, hspec >= 1.3
, conduit
, conduit-extra
, process-conduit
, resourcet
|