packages feed

pointfree-1.1: pointfree.cabal

Cabal-Version: >= 1.8

Name:     pointfree
Version:  1.1
Category: Tool
Synopsis: Tool for refactoring expressions into pointfree form

Description:
    The pointfree tool is a standalone command-line version of the pl
    plugin for lambdabot.

Author:       Thomas Jäger
Maintainer:   Ben Millwood <haskell@benmachine.co.uk>
License:      OtherLicense
License-file: LICENSE

Extra-source-files: ChangeLog README test/Test.hs

Build-type:  Simple
Tested-with: GHC == 7.4.2, GHC == 7.6.2, GHC == 7.8.2, GHC == 7.10.1

Source-repository head
  type:     git
  location: git://github.com/benmachine/pointfree.git

library
    Exposed-modules: Pointfree
    Build-depends: base >= 4.5 && < 4.9,
                   array >= 0.3 && < 0.6,
                   containers >= 0.4 && < 0.6,
                   haskell-src-exts == 1.16.*,
                   transformers < 0.5
    Other-modules: Plugin.Pl.Common
                   Plugin.Pl.Parser
                   Plugin.Pl.PrettyPrinter
                   Plugin.Pl.Optimize
                   Plugin.Pl.Rules
                   Plugin.Pl.Transform
    GHC-options: -Wall

Executable pointfree
  Main-is:       Main.hs
  GHC-options:   -Wall
  Extensions:    ExistentialQuantification,
                 FlexibleInstances,
                 ImplicitParams,
                 PatternGuards,
                 ScopedTypeVariables
  Build-depends: base >= 4.3 && < 4.9,
                 array >= 0.3 && < 0.6,
                 containers >= 0.4 && < 0.6,
                 haskell-src-exts == 1.16.*,
                 transformers < 0.5
  Other-modules: Plugin.Pl.Common
                 Plugin.Pl.Parser
                 Plugin.Pl.PrettyPrinter
                 Plugin.Pl.Optimize
                 Plugin.Pl.Rules
                 Plugin.Pl.Transform

Test-suite tests
  Type: exitcode-stdio-1.0

  Main-is: Test.hs
  Other-modules:

  Build-depends:
    array >= 0.3 && < 0.6,
    base < 5,
    containers >= 0.3 && < 0.6,
    haskell-src-exts == 1.16.*,
    HUnit >= 1.1 && < 1.3,
    QuickCheck >= 2.1 && < 2.9,
    transformers < 0.5

  Extensions:
    ExistentialQuantification
    FlexibleInstances
    ImplicitParams
    PatternGuards
    ScopedTypeVariables

  GHC-Options:    -Wall
  Hs-source-dirs: . test