packages feed

xmltv-0.0.1: xmltv.cabal

name: xmltv
version: 0.0.1
synopsis: Show tv channels in the terminal
license: MIT
license-file: LICENSE
author: Per Odlund
maintainer: per.odlund@gmail.com
category: System
build-type: Simple
cabal-version: >=1.10
homepage: http://github.com/dagle/hs-xmltv
data-files: man/tv.1
extra-source-files: README.md,
                    tv.cfg.example
                    man/tv.1

description:
    A program for showing whats on tv in the terminal using xmltv.
    Comes with a lib and a program to fetch and prettyprint the info.

library
  default-language: Haskell2010
  build-depends: base > 3 && < 5, time, old-locale, xml
  hs-source-dirs: src
  exposed-modules: Text.XmlTv
  ghc-options: -funbox-strict-fields -rtsopts
  ghc-prof-options: -auto-all


executable tv
  default-language: Haskell2010
  build-depends: base > 3, xml, bytestring, time,
                 terminfo, wl-pprint-terminfo, old-locale, wl-pprint-extras, 
                 configurator, filepath, xdg-basedir, http-client, network-uri, 
                 unix, split
  hs-source-dirs: src 
  main-is: Tv.hs
  ghc-options: -rtsopts
  ghc-prof-options: -auto-all

source-repository head
  type: git
  location: git://github.com/dagle/hs-xmltv.git