packages feed

filesystem-enumerator-0.1: filesystem-enumerator.cabal

name: filesystem-enumerator
version: 0.1
synopsis: Enumerator-based API for manipulating the filesystem.
license: MIT
license-file: license.txt
author: John Millikin <jmillikin@gmail.com>, Michael Snoyman <michael@snoyman.com>
maintainer: jmillikin@gmail.com
build-type: Simple
cabal-version: >= 1.6
category: System, Enumerator
stability: experimental
bug-reports: mailto:jmillikin@gmail.com
homepage: https://john-millikin.com/software/filesystem-enumerator/
tested-with: GHC==6.12.1

source-repository head
  type: bazaar
  location: https://john-millikin.com/software/filesystem-enumerator/

library
  ghc-options: -Wall

  build-depends:
      base >= 3 && < 5
    , enumerator >= 0.4 && < 0.5
    , system-filepath >= 0.4 && < 0.5
    , system-fileio >= 0.3 && < 0.4
    , transformers >= 0.2 && < 0.3

  if os(windows)
    cpp-options: -DCABAL_OS_WINDOWS
    build-depends: Win32
  else
    build-depends: unix

  exposed-modules:
    Filesystem.Enumerator