packages feed

repline-0.1.0.0: repline.cabal

name:                repline
version:             0.1.0.0
license:             MIT
license-file:        LICENSE
author:              Stephen Diehl
maintainer:          stephen.m.diehl@gmail.com
copyright:           2014 Stephen Diehl
category:            User Interfaces
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10
tested-with:         GHC == 7.6.1, GHC == 7.6.3, GHC == 7.8.3
Bug-Reports:         https://github.com/sdiehl/repline/issues

Description:
  Haskeline wrapper for GHCi-like REPL interfaces. Composable with normal mtl transformers.
Source-Repository head
    Type: git
    Location: git@github.com:sdiehl/repline.git

library
  hs-source-dirs:      src
  exposed-modules:     System.Console.Repline
  -- other-modules:       
  build-depends:
    base       >= 4.6 && <4.7,
    containers >= 0.5 && <0.6,
    mtl        >= 2.2 && <2.3,
    haskeline  >= 0.7 && <0.8
  other-extensions:
    FlexibleInstances,
    FlexibleContexts,
    TypeSynonymInstances,
    UndecidableInstances,
    MultiParamTypeClasses,
    GeneralizedNewtypeDeriving
  default-language:    Haskell2010