packages feed

directory-listing-webpage-parser-0.1.1.0: directory-listing-webpage-parser.cabal

name:                directory-listing-webpage-parser
version:             0.1.1.0
synopsis:            directory listing webpage parser
description:         A parser that parses directory listings (webpage that autogenerated by web server).
                     .
                     example webpage that this package can parse:
                     .
                     nginx: <https://www.kernel.org/pub/linux/devel/gcc/>
                     .
                     apache: <https://nixos.org/channels/nixos-15.09/>
                     .
                     However, some hard coding is used in this package, so it may failed to parse
                     depend on directory listings' html structure.
license:             BSD3
license-file:        LICENSE
author:              mingchuan
maintainer:          ming@culpring.com
-- copyright:           
category:            Text
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

source-repository head
  type:     git
  location: https://github.com/sifmelcara/directory-listing-webpage-parser

library
  exposed-modules: Text.HTML.DirectoryListing.Parser 
                   Text.HTML.DirectoryListing.Type
  build-depends:       base >= 4.5 && < 5,
                       tagsoup >= 0.13,
                       bytestring >= 0.10,
                       text,
                       time >= 1.5,
                       network-uri
  -- hs-source-dirs:      .
  default-language:    Haskell2010