1name:                aspell-pipe
2version:             0.6
3synopsis:            Pipe-based interface to the Aspell program
4description:         A pipe-based interface to the Aspell program (no
5                     dynamic linking required).
6license:             BSD3
7license-file:        LICENSE
8author:              Jonathan Daugherty
9maintainer:          jtd@galois.com
10copyright:           2017 Jonathan Daugherty
11category:            Text
12build-type:          Simple
13extra-source-files:  CHANGELOG.md
14cabal-version:       1.18
15
16extra-doc-files:     README.md
17
18source-repository    head
19  type: git
20  location: https://github.com/matterhorn-chat/aspell-pipe.git
21
22library
23  exposed-modules:
24    Text.Aspell
25
26  hs-source-dirs:      src
27  default-language:    Haskell2010
28  build-depends:       base    >= 4.8 && < 5,
29                       async   >= 2.2 && < 2.3,
30                       process >= 1.3,
31                       text
32