packages feed

sphinxesc-0.1.0.0: sphinxesc.cabal

name:                sphinxesc
version:             0.1.0.0
synopsis:            Transform queries for sphinx input
description:         Transform queries for sphinx input
category:            Text
author:              Daniel Choi
maintainer:          Mackey RMS
bug-reports:         https://github.com/mackeyrms/sphinxesc/issues
homepage:            https://github.com/mackeyrms/sphinxesc#readme
cabal-version:       >=1.10
tested-with:         GHC == 8.0.2
build-type:          Simple
extra-source-files:  README.md
license:             MIT
license-file:        LICENSE
-- copyright:           

source-repository head
  type:     git
  location: https://github.com/mackeyrms/sphinxesc

library
  build-depends:       base >=4.7 && <5.0
                     , parsec
  exposed-modules:     SphinxEscape
  hs-source-dirs:      .
  default-language:    Haskell2010

executable sphinxesc
  build-depends:       base
                     , parsec
                     , sphinxesc
                     , optparse-applicative
  hs-source-dirs:      .
  default-language:    Haskell2010
  main-is: Main.hs