packages feed

process-listlike-0.8: process-listlike.cabal

Name:               process-listlike
Version:            0.8
Synopsis:           Enhanced version of process-extras
Description:        Extra functionality for the Process library <http://hackage.haskell.org/package/process>.
  This is a drop-in replacement for <http://hackage.haskell.org/package/process-extras>,
  which adds support for creating processes from a CreateProcess, more access to the
  internals, and completes support for the String type.
Homepage:           http://src.seereason.com/process-listlike
License:            MIT
License-file:       LICENSE
Author:             David Lazar, Bas van Dijk, David Fox
Maintainer:         David Fox <dsf@seereason.com>
Category:           System
Build-type:         Simple
Cabal-version:      >=1.8
Extra-Source-Files: changelog

source-repository head
  Type:             darcs
  Location:         https://github.com/ddssff/process-listlike.git

Library
  ghc-options:      -Wall -O2

  Exposed-modules:
    System.Process.ListLike
    System.Process.ByteString
    System.Process.ByteString.Lazy
    System.Process.String
    System.Process.Text
    System.Process.Text.Lazy

  Build-depends:
    base >= 4 && < 5,
    bytestring,
    deepseq,
    HUnit,
    ListLike >= 4.0,
    process,
    text,
    utf8-string

Executable tests
  Main-Is: Tests/Main.hs
  GHC-Options: -Wall -O2 -threaded -rtsopts
  Build-Depends:
    base >= 4 && < 5,
    bytestring,
    deepseq,
    HUnit,
    ListLike,
    process,
    process-listlike,
    text,
    utf8-string,
    unix