haste-0.1.1: haste.cabal
name: haste
version: 0.1.1
synopsis: A universal pastebin tool, written in Haskell.
description: hpaste is a simple command line utility for piping text to online pastebin sites such as hpaste.org, paste2.org, pastebin.com and others. Text can be passed via STDIN, or by giving a file argument; text is pasted online, and the URL of the paste is printed to STDOUT. Use --help for more information.
category: Web
license: BSD3
license-file: LICENSE
author: David Siegel
maintainer: djsiegel@gmail.com
build-type: Simple
cabal-version: >=1.4
executable: haste
main-is: Main.hs
build-depends: base >= 3 && < 4, filepath, mtl, curl
hs-source-dirs: src
extensions: ViewPatterns
ghc-options: -Wall
other-modules: Haste.LanguageDetection
Haste.Monad
Haste.Options
Haste.PasteProviders
Haste.PasteProviders.All
Haste.PasteProviders.Console
Haste.PasteProviders.HPaste
Haste.PasteProviders.Paste2
Haste.PasteProviders.Pastebin
Haste.Post
Haste.Types