packages feed

wybor-0.1.0: wybor.cabal

name:                wybor
version:             0.1.0
synopsis:            Console line fuzzy search
description:         Console line fuzzy search as a library
homepage:            https://github.com/supki/wybor
license:             BSD2
license-file:        LICENSE
author:              Matvey Aksenov
maintainer:          matvey.aksenov@gmail.com
copyright:           Matvey Aksenov 2014
category:            Text
build-type:          Simple
cabal-version:       >= 1.10
tested-with:         GHC == 7.6.3, GHC == 7.8.2
extra-source-files:
  README.markdown

source-repository head
  type: git
  location: https://github.com/supki/wybor

library
  default-language:
    Haskell2010
  build-depends:
      ansi-terminal >= 0.6
    , base          >= 4.6 && < 5
    , conduit       >= 1.1
    , containers
    , lens          >= 4.3
    , resourcet     >= 1.1
    , text          >= 1.1
    , transformers  >= 0.3
    , semigroups    >= 0.15
    , terminal-size >= 0.2.1
    , unix
  hs-source-dirs:
    src
  exposed-modules:
    Wybor
  other-modules:
    Score
    TTY
    Zipper
    Ansi
  c-sources:
    cbits/wcwidth.c

test-suite spec
  default-language:
    Haskell2010
  type:
    exitcode-stdio-1.0
  build-depends:
      ansi-terminal
    , base          >= 4.6 && < 5
    , conduit
    , containers
    , hspec         >= 1.10
    , lens
    , process
    , resourcet
    , semigroups
    , terminal-size
    , text
    , transformers
    , unix
  hs-source-dirs:
    test
    src
  main-is:
    Spec.hs
  ghc-options:
    -threaded
  cpp-options:
    -DTEST
  c-sources:
    cbits/wcwidth.c