packages feed

find-conduit-0.2.0: find-conduit.cabal

Name:                find-conduit
Version:             0.2.0
Synopsis:            A file-finding conduit that allows user control over traversals.
License-file:        LICENSE
License:             MIT
Author:              John Wiegley
Maintainer:          johnw@newartisans.com
Build-Type:          Simple
Cabal-Version:       >=1.10
Category:            System
Description:
  A file-finding conduit that allows user control over traversals.

Source-repository head
  type: git
  location: git://github.com/jwiegley/find-conduit.git

Library
    default-language:   Haskell98
    ghc-options: -Wall
    build-depends:
        base                 >= 3 && < 5
      , conduit
      , conduit-combinators
      , attoparsec
      , system-filepath
      , unix                 >= 2.5.1.1
      , text                 >= 0.11.3.1
      , regex-posix
      , profunctors
      , mtl
    exposed-modules:
        Data.Conduit.Find
    other-modules:
        Data.Conduit.Find.Looped

test-suite test
    hs-source-dirs: test
    default-language: Haskell2010
    main-is: main.hs
    type: exitcode-stdio-1.0
    ghc-options: -Wall -threaded
    build-depends:
        base
      , find-conduit
      , conduit
      , conduit-combinators
      , attoparsec
      , system-filepath
      , unix                 >= 2.5.1.1
      , text                 >= 0.11.3.1
      , regex-posix
      , mtl
      , hspec                >= 1.4