forked from danchoi/sphinxesc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sphinxesc.cabal
52 lines (46 loc) · 1.46 KB
/
sphinxesc.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: sphinxesc
version: 0.1.0.1
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
, split
, MissingH
exposed-modules: SphinxEscape
hs-source-dirs: .
default-language: Haskell2010
executable sphinxesc
build-depends: base
, sphinxesc
, optparse-applicative
hs-source-dirs: src
default-language: Haskell2010
main-is: Main.hs
test-suite sphinxesc-tests
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs: .
build-depends: base >=4.7 && <5.0
, parsec
, sphinxesc
, split
, MissingH
, HUnit
other-modules: SphinxEscape
default-language: Haskell2010