packages feed

ureader-0.1.0.0: ureader.cabal

name:                ureader
version:             0.1.0.0
license:             BSD3
license-file:        LICENSE
author:              Sam T.
maintainer:          Sam T. <pxqr.sta@gmail.com>
copyright:           (c) 2013, Sam T.
category:            RSS
build-type:          Simple
cabal-version:       >= 1.10
tested-with:         GHC == 7.6.3
homepage:            https://github.com/pxqr/ureader
bug-reports:         https://github.com/pxqr/ureader/issues
synopsis:            Minimalistic CLI RSS reader.
description:

        `ureader` is minimalistic command line RSS reader with unicode
        and color support. Everything it does is fetch RSS documents,
        merge them according to specified options, format and flush
        resulting feed to stdout. So `ureader` could be used with
        pagers like `more(1)` or in linux terminal.
        .
        [/Release Notes/]
        .
          * /0.1.0.0:/ Initial version.


source-repository head
  type:                git
  location:            git://github.com/pxqr/ureader.git

executable ureader
  default-language:    Haskell2010
  default-extensions:  OverloadedStrings
                     , PatternGuards
                     , RecordWildCards
                     , ViewPatterns
                     , BangPatterns

                     , FlexibleInstances
                     , FlexibleContexts
  hs-source-dirs:      src
  main-is:             Main.hs
  other-modules:       UReader.Localization
                       UReader.Options
                       UReader.Rendering
                       UReader.RSS

  build-depends:       base       == 4.*
                     , implicit-params == 0.2.*
                     , data-default

                     , async
                     , parallel-io == 0.3.*

                     , bytestring == 0.10.*
                     , text       == 0.11.*
                     , containers == 0.5.*
                     , split      == 0.2.*

                     , time       == 1.4.*
                     , old-locale == 1.0.*

                     , network == 2.4.*
                     , curl
                     , download-curl

                     , directory == 1.2.*
                     , filepath  == 1.3.*
                     , ansi-wl-pprint       == 0.6.*
                     , optparse-applicative == 0.5.*
                     , terminal-size        == 0.2.*

                     , xml     == 1.3.*
                     , feed    == 0.3.*
                     , tagsoup == 0.12.*

  ghc-options:       -Wall -O2