packages feed

rss2irc-0.1: rss2irc.cabal

name:                rss2irc
version:             0.1
homepage:            http://code.haskell.org/~dons/code/rss2irc
license:             BSD3
license-file:        LICENSE
author:              Don Stewart
maintainer:          dons@galois.com
category:            Network
synopsis:            Subscribe to an RSS feed and write it to an IRC channel
description:         Subscribe to an RSS feed and write it to an IRC channel
                     .
                     Example, announce Hackage updates in channel:
                     .
                     > rss2irc irc.freenode.org 6667 #zid39kd3 rss2irc http://hackage.haskell.org/packages/archive/recent.rss "New package: "
                     .
cabal-version:       >= 1.2
build-type:          Simple

flag small_base
  description: Choose the new smaller, split-up base package.

executable rss2irc
    main-is:         Main.hs

    build-depends:       feed,
                         tagsoup,
                         strict-concurrency,
                         mtl,
                         network
    if flag(small_base)
        build-depends:   base >= 3, parallel
    else
        build-depends:   base <  3